-
Notifications
You must be signed in to change notification settings - Fork 14
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
"No samples in this workspace to parse!" error in flowjo_to_gatingset, apparently bc of divergent sample name and FCS file name #113
Comments
Just FYI, for my specific purpose, I found a workaround combining the second code chunk above and
which subsets the GatingSet to keep only the sample of interest. This is not ideal since I have to load more samples than needed, slowing things down. Also, please let me know whether I should keep this and #112 open (are these the expected behavior for |
|
If they only differentiate by fcs filenames, then you will need to pre-load the target file into a |
Hey guys, thank you both for your replies. @gfinak: pls see https://github.com/PedroMilanezAlmeida/ezDAFi for use case. @mikejiang: yeah, that is what I ended up doing (pre-loading a cytoset with a single fcs). I will leave this and #112 open since the help is not correct (path as data.frame gives error and subset as FCS filename loads more than one FCS file in some cases). Pls, feel free to close. |
A workaround for #112 is to provide the directory where the FCS files are located and the FCS filename to
path
andsubset
, respectively. For example:However, apparently if the sample name and the FCS filename don't match,
Error in (function (ws, group_id, subset, execute, path, cytoset, h5_dir, : No samples in this workspace to parse!
is thrown. A workaround would be:which works pretty well!
However, I am working with several samples that have the same sample name but different FCS files and different file names (these are all technical replicates of the same sample acquired on different days). Using the second code chunk above will, unfortunately, load all technical replicates with the same sample name, and, as mentioned in #112, I need to parse only one sample at a time.
Again, any help would be deeply appreciated.
PS: the help for
subset
indicates that FCS filenames can be used instead of sample names ("Or a character specifying the FCS filenames to be imported.")The text was updated successfully, but these errors were encountered: