Skip to content

Commit 80e49aa

Browse files
committed
update README
1 parent afb2a61 commit 80e49aa

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@
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

workflows/seqinspector.nf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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
//

0 commit comments

Comments
 (0)