Skip to content

Commit 9179262

Browse files
Merge pull request #4 from nf-core/update-fq
Simplify pipeline
2 parents 3cddc8b + 1e85529 commit 9179262

29 files changed

+297
-1356
lines changed

CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,20 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## v1.0dev - [date]
6+
## 1.0.0 2024-06-19
77

8-
Initial release of nf-core/demo, created with the [nf-core](https://nf-co.re/) template.
8+
### Credits
9+
10+
Special thanks to the following for their reviews and assistance:
11+
12+
- [Maxime Garcia](https://github.com/maxulysse)
13+
- [Friederike Hanssen](https://github.com/FriederikeHanssen)
914

1015
### `Added`
1116

12-
### `Fixed`
17+
- `nf-core/seqtk/trim` module
18+
- `skip_trim` parameter
1319

14-
### `Dependencies`
20+
## v1.0dev - 2024-05-5
1521

16-
### `Deprecated`
22+
Initial release of nf-core/demo, created with the [nf-core](https://nf-co.re/) template.

CITATIONS.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414

1515
> Andrews, S. (2010). FastQC: A Quality Control Tool for High Throughput Sequence Data [Online].
1616
17-
- [fastp](https://www.ncbi.nlm.nih.gov/pubmed/30423086/)
18-
19-
> Chen S, Zhou Y, Chen Y, Gu J. fastp: an ultra-fast all-in-one FASTQ preprocessor. Bioinformatics. 2018 Sep 1;34(17):i884-i890. doi: 10.1093/bioinformatics/bty560. PubMed PMID: 30423086; PubMed Central PMCID: PMC6129281.
17+
- [seqtk](https://github.com/lh3/seqtk)
2018

2119
- [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/)
2220

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
![nf-core/demo metro map](docs/images/nf-core-demo-subway.png)
2525

2626
1. Read QC ([`FASTQC`](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/))
27-
2. Adapter and quality trimming ([`FASTP`](https://github.com/OpenGene/fastp))
27+
2. Adapter and quality trimming ([`SEQTK_TRIM`](https://github.com/lh3/seqtk))
2828
3. Present QC for raw reads ([`MULTIQC`](http://multiqc.info/))
2929

3030
## Usage

assets/nf-core-demo_logo_light.png

2 Bytes
Loading

conf/modules.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ process {
2828
}
2929

3030

31-
withName: 'FASTP' {
31+
withName: 'SEQTK_TRIM' {
3232
publishDir = [
33-
path: { "${params.outdir}/fastp/${meta.id}" },
33+
path: { "${params.outdir}/fq/${meta.id}" },
3434
mode: params.publish_dir_mode,
35-
pattern: "*.{html,json,log}"
35+
pattern: "*.{fastq.gz}"
3636
]
3737
}
3838

conf/test.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,4 @@ params {
2222
// Input data
2323
input = params.pipelines_testdata_base_path + 'viralrecon/samplesheet/samplesheet_test_illumina_amplicon.csv'
2424

25-
// Genome references
26-
genome = 'R64-1-1'
2725
}

conf/test_full.config

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ params {
1414
config_profile_name = 'Full test profile'
1515
config_profile_description = 'Full test dataset to check pipeline function'
1616

17-
// Input data for full size test
18-
input = params.pipelines_testdata_base_path + 'viralrecon/samplesheet/samplesheet_full_illumina_amplicon.csv'
17+
// Input data
18+
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/samplesheet_test_illumina_amplicon.csv'
1919

20-
// Genome references
21-
genome = 'R64-1-1'
2220
}
-2.57 KB
Loading

docs/images/nf-core-demo-subway.svg

Lines changed: 18 additions & 22 deletions
Loading
29 Bytes
Loading

0 commit comments

Comments
 (0)