-
Notifications
You must be signed in to change notification settings - Fork 26
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
Crisprcleanr different input (csv and defined library) #109
Conversation
|
I'm a bit confused why the tests are failing for targeted given that I didn't touch anything on that side? |
Co-authored-by: Júlia Mir Pedrol <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Only a couple of comments left
workflows/crisprseq_screening.nf
Outdated
if(params.crisprcleanr.endsWith(".csv")) { | ||
ch_crisprcleanr_file = file(params.crisprcleanr) | ||
} else { | ||
ch_crisprcleanr_value = Channel.value(params.crisprcleanr) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I understand from the code below, you can define the same channel name, for example ch_crisprcleanr
, instead of having two different channels ch_crisprcleanr_file
and ch_crisprcleanr_value
) } else | ||
{ | ||
ch_crispr_normalize = Channel.of([id: "count_table_normalize"]).concat(ch_counts) | ||
CRISPRCLEANR_NORMALIZE( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you checked if you get a warning complaining about a module used twice? You may need to import the module twice, one with an alias.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it doesn't complain
Co-authored-by: Júlia Mir Pedrol <[email protected]>
This PR contains the following :