We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
seqstats
1 parent a49d13c commit 6f9e110Copy full SHA for 6f9e110
main.nf
@@ -2947,14 +2947,16 @@ workflow seqstats {
2947
// Input file with multiplexed reads (FASTQ.gz)
2948
ch_input = Channel.value(params.input)
2949
2950
+ // Validate tags
2951
+ tag_validation(ch_barcodes)
2952
2953
// Initial QC
2954
qc_se(ch_input)
2955
2956
// Demultiplexing
2957
demux(
2958
qc_se.out.filtered,
- ch_barcodes)
2959
+ tag_validation.out.fasta)
2960
2961
// Check primers
2962
primer_check(
0 commit comments