You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be useful to be able to specify your reads in text files? This would be in addition to the current thing where you can do a directory or a glob.
This could be useful if you have a whole ton of reads but only some of them are relevant for your pipeline run, like if you have a folder with
And reads_fwd.txt looks like (do s/r1/r2/ for reads_rev.txt):
marker1_r1.fastq
marker3_r1.fastq
This is obviously a simple case where you could just use a glob, but there are others where this could be more useful. Particularly if someone has used the 'combined' multiplexing method (indices AND barcodes)
The text was updated successfully, but these errors were encountered:
Would it be useful to be able to specify your reads in text files? This would be in addition to the current thing where you can do a directory or a glob.
This could be useful if you have a whole ton of reads but only some of them are relevant for your pipeline run, like if you have a folder with
And you just want to do a run with one of those markers, you could do something like:
$ rainbow_bridge.nf --reads-file reads.txt
Or:
$ rainbow_bridge.nf --fwd-file reads_fwd.txt --rev-file reads_rev.txt
Where reads.txt look like:
And reads_fwd.txt looks like (do s/r1/r2/ for reads_rev.txt):
This is obviously a simple case where you could just use a glob, but there are others where this could be more useful. Particularly if someone has used the 'combined' multiplexing method (indices AND barcodes)
The text was updated successfully, but these errors were encountered: