Skip to content

Commit f9fe16e

Browse files
committed
allow platform from SRA: 'dnbseq'
1 parent 7860968 commit f9fe16e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The tracking for changes started in v2.2
44

5+
# v2.7.2
6+
7+
* Adjust short-reads workflow filter to allow analysis from SRA for platform key-values: illumina, bgiseq and dnbseq
8+
59
## v2.7.1
610

711
* [[#36]](https://github.com/fmalmeida/ngs-preprocess/issues/36) - Include nf-tests to the pipeline.

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ workflow {
156156
.filter{ it != '' }
157157
.mix(
158158
SRA_FETCH.out.fastqs
159-
.filter{ it[1] =~ /illumina|bgiseq/ }
159+
.filter{ it[1] =~ /illumina|bgiseq|dnbseq/ }
160160
.map{
161161
def meta = [:]
162162
meta.id = it[0]

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ manifest {
9292
homePage = "https://github.com/fmalmeida/ngs-preprocess"
9393
mainScript = "main.nf"
9494
nextflowVersion = ">=21.10.0"
95-
version = "2.7.1"
95+
version = "2.7.2"
9696
}

0 commit comments

Comments
 (0)