-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output behavior when only the module name is asked for #179
Comments
@pcarbo the above ticket was from Yuxin's slack DM. It seems we should set |
@gaow What happens when you set |
@pcarbo it works with |
@gaow What do you mean by this:
What makes you think Yuxin is requesting the file names? |
This is what I told her when she asked me in DM how one can access file names directly. I said "filenames appear to be specifically asked for" because However now I am wondering since we have the list-based output, should we just load everything into the output unless the output method is |
However now I am wondering since we have the list-based output, should we just load everything into the output unless the output method is data.frame, in which case we'll return output file names instead? @gaow This is the current behaviour. |
Really? Then the example above would suggest a bug because the expected behavior would be to load everything from
Does it make sense? |
This would be the behaviour for But the default is |
I'm guess I'm not sure what you mean by "everything". |
@gaow Can you explain what would be your proposed default behaviour for these two examples? out <- dscquery("mydsc",targets = "score")
out <- dscquery("mydsc",targets = "score.delta") (Assuming "score" is a module group.) |
For
For
where
1-3 in this post correspond to my proposal 1-3 above. The point is to allow loading the entire data object when |
@gaow I think that is potentially useful behaviour. On the other hand, I see some disadvantages (e.g., could use up a huge amount of memory if the outputs are large). I think we would need some more time to study usage before changing dscquery to accommodate this. In any case, this doesn't seem like high priority at this stage. |
Sure let's keep the ticket open. I think an apparent way around the disadvantage is to set |
The test data-set is on:
/project/mstephens/SuSiE/susie_z/output
. The query is:The expected behavior is to see
score_susie.output.file
column in the output. But we seeNotice running
dsc-query
the output seems fine:so we might have done something problematic filtering it downstream.
The text was updated successfully, but these errors were encountered: