File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 3131 workflows use the "tube map" design for that. See https://nf-co.re/docs/contributing/design_guidelines#examples for examples. -->
3232<!-- TODO nf-core: Fill in short bullet-pointed list of the default steps in the pipeline -->
3333
34- 1 . Read QC ([ ` FastQC ` ] ( https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ ) )
35- 2 . Present QC for raw reads ([ ` MultiQC ` ] ( http://multiqc.info/ ) )
34+ 1 . Subsample reads ([ ` Seqtk ` ] ( https://github.com/lh3/seqtk ) )
35+ 2 . Read QC ([ ` FastQC ` ] ( https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ ) )
36+ 3 . Present QC for raw reads ([ ` MultiQC ` ] ( http://multiqc.info/ ) )
3637
3738## Usage
3839
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ workflow SEQINSPECTOR {
3333 ch_multiqc_reports = Channel . empty()
3434
3535 //
36- // MODULE: Run Seqkit sample to perform subsampling
36+ // MODULE: Run Seqtk sample to perform subsampling
3737 //
3838 if (params. sample_size > 0 ) {
3939 ch_sample_sized = SEQTK_SAMPLE (
@@ -44,9 +44,7 @@ workflow SEQINSPECTOR {
4444 ch_versions = ch_versions. mix(SEQTK_SAMPLE . out. versions. first())
4545 } else {
4646 // No do subsample
47- ch_sample_sized = ch_samplesheet. map {
48- meta, reads -> [meta, reads]
49- }
47+ ch_sample_sized = ch_samplesheet
5048 }
5149
5250 //
You can’t perform that action at this time.
0 commit comments