Skip to content

Commit

Permalink
Merge pull request #158 from Daniel-VM/concatenate_fasqs
Browse files Browse the repository at this point in the history
Added module to concatenate/merge fastq files
  • Loading branch information
Daniel-VM authored Oct 25, 2024
2 parents 064996b + 10a7df8 commit efe6309
Show file tree
Hide file tree
Showing 12 changed files with 792 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [#176](https://github.com/nf-core/bacass/pull/176) Update nf-core/bacass to nf-core-tools v3.0.2 `TEMPLATE`.
- [#166](https://github.com/nf-core/bacass/pull/166) Added FastQC after-trimming section to MultiQC report.
- [#158](https://github.com/nf-core/bacass/pull/158) Support automatic concatenation of FastQ files for the same sample.

### `Fixed`

Expand Down
2 changes: 1 addition & 1 deletion assets/schema_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"ID": {
"type": "string",
"pattern": "^\\S+$",
"unique": true,
"unique": false,
"errorMessage": "Sample name must be provided and cannot contain spaces",
"meta": ["id"]
},
Expand Down
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ params {
config_profile_description = 'Minimal test dataset to check pipeline function'

// Input data
input = params.pipelines_testdata_base_path + 'bacass/bacass_short.tsv'
input = params.pipelines_testdata_base_path + 'bacass/bacass_short_reseq.tsv'

// some extra args to speed tests up
prokka_args = " --fast"
Expand Down
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
"installed_by": ["modules"]
},
"cat/fastq": {
"branch": "master",
"git_sha": "1ceaa8ba4d0fd886dbca0e545815d905b7407de7",
"installed_by": ["modules"]
},
"dragonflye": {
"branch": "master",
"git_sha": "a3ae45e99f68e513b0feb8d5f27e2fdd0d0f083d",
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/cat/fastq/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

79 changes: 79 additions & 0 deletions modules/nf-core/cat/fastq/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions modules/nf-core/cat/fastq/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit efe6309

Please sign in to comment.