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

Dummy PR : testing docker container options in GATK Spark modules #1430

Merged
2 commits merged into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ if (System.getenv('PROFILE')) {
} else if ("$PROFILE" == "docker") {
conda.enabled = false
docker.enabled = true
docker.runOptions = { params.use_gatk_spark ? '' : '-u $(id -u):$(id -g)' }.call()
docker.runOptions = '-u $(id -u):$(id -g)'
charliecloud.enabled = false
podman.enabled = false
shifter.enabled = false
Expand Down
2 changes: 1 addition & 1 deletion conf/test/cache.config
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ if (System.getenv('PROFILE')) {
} else if ("$PROFILE" == "docker") {
conda.enabled = false
docker.enabled = true
docker.runOptions = { params.use_gatk_spark ? '' : '-u $(id -u):$(id -g)' }.call()
docker.runOptions = '-u $(id -u):$(id -g)'
charliecloud.enabled = false
podman.enabled = false
shifter.enabled = false
Expand Down
2 changes: 0 additions & 2 deletions conf/test/use_gatk_spark.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ params {
use_gatk_spark = 'baserecalibrator,markduplicates'
input = "${projectDir}/tests/csv/3.0/fastq_tumor_only.csv"
}

docker.runOptions = ''
4 changes: 4 additions & 0 deletions modules/nf-core/gatk4spark/applybqsr/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/gatk4spark/baserecalibrator/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/gatk4spark/markduplicates/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 nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ profiles {
docker.enabled = true
podman.enabled = false
shifter.enabled = false
docker.runOptions = { params.use_gatk_spark ? '' : '-u $(id -u):$(id -g)' }.call()
docker.runOptions = '-u $(id -u):$(id -g)'
singularity.enabled = false
}
arm {
Expand Down
1 change: 1 addition & 0 deletions tests/test_joint_germline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- germline
- joint_germline
- variant_calling
- foo
files:
- path: results/csv/variantcalled.csv
md5sum: d2dffdbd2b4f1f26a06637592d24dab3
Expand Down