Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating nf-core-modules #685

Merged
merged 8 commits into from
Jul 28, 2022
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- [#679](https://github.com/nf-core/sarek/pull/679) - Back to `dev`
- [#685](https://github.com/nf-core/sarek/pull/685) - Updating the
asp8200 marked this conversation as resolved.
Show resolved Hide resolved
- [#691](https://github.com/nf-core/sarek/pull/691) - To run the same pytest as before locally, use `PROFILE=docker`

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"git_sha": "682f789f93070bd047868300dd018faf3d434e7c"
},
"bcftools/stats": {
"git_sha": "682f789f93070bd047868300dd018faf3d434e7c"
"git_sha": "535975eb81c9e48eb0403c136b7f1dd7acb1afad"
},
"bwa/index": {
"git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d"
Expand Down Expand Up @@ -70,7 +70,7 @@
"git_sha": "973151e9eab9bac400aa99f099075a10cdd8e84c"
},
"fastp": {
"git_sha": "9b51362a532a14665f513cf987531f9ea5046b74"
"git_sha": "7e8ad566883449e7939062b5e2bcf53fc1e0002f"
},
"fastqc": {
"git_sha": "49b18b1639f4f7104187058866a8fab33332bdfe"
Expand Down Expand Up @@ -202,7 +202,7 @@
"git_sha": "897c33d5da084b61109500ee44c01da2d3e4e773"
},
"samtools/merge": {
"git_sha": "897c33d5da084b61109500ee44c01da2d3e4e773"
"git_sha": "720027275ccdc1363bb2a19c6412da148e31d94b"
},
"samtools/mpileup": {
"git_sha": "24e05f6097a5dde57dd80d33295ed120f1b81aef"
Expand Down
8 changes: 7 additions & 1 deletion modules/nf-core/modules/bcftools/stats/main.nf

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

5 changes: 5 additions & 0 deletions modules/nf-core/modules/bcftools/stats/meta.yml

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

10 changes: 7 additions & 3 deletions modules/nf-core/modules/fastp/main.nf

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

2 changes: 1 addition & 1 deletion modules/nf-core/modules/fastp/meta.yml

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

3 changes: 2 additions & 1 deletion modules/nf-core/modules/samtools/merge/main.nf

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

4 changes: 4 additions & 0 deletions modules/nf-core/modules/samtools/merge/meta.yml

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

3 changes: 2 additions & 1 deletion subworkflows/nf-core/alignment_to_fastq.nf

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

2 changes: 1 addition & 1 deletion subworkflows/nf-core/gatk4/recalibrate/main.nf

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

2 changes: 1 addition & 1 deletion subworkflows/nf-core/gatk4/recalibrate_spark/main.nf

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

2 changes: 1 addition & 1 deletion subworkflows/nf-core/merge_index_bam.nf

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

3 changes: 2 additions & 1 deletion subworkflows/nf-core/merge_index_cram.nf

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

2 changes: 1 addition & 1 deletion subworkflows/nf-core/vcf_qc.nf

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

4 changes: 2 additions & 2 deletions workflows/sarek.nf
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ workflow SAREK {

// convert any bam input to fastq
// Fasta are not needed when converting bam to fastq -> []
ALIGNMENT_TO_FASTQ_INPUT(ch_input_sample_type.bam, [])
ALIGNMENT_TO_FASTQ_INPUT(ch_input_sample_type.bam, [], [])

// gather fastq (inputed or converted)
// Theorically this could work on mixed input (fastq for one sample and bam for another)
Expand Down Expand Up @@ -419,7 +419,7 @@ workflow SAREK {
bamtofastq = CREATE_UMI_CONSENSUS.out.consensusbam.map{meta, bam -> [meta,bam,[]]}

// convert back to fastq for further preprocessing
ALIGNMENT_TO_FASTQ_UMI(bamtofastq, [])
ALIGNMENT_TO_FASTQ_UMI(bamtofastq, [], [])

ch_reads_fastp = ALIGNMENT_TO_FASTQ_UMI.out.reads

Expand Down