Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ChIPster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xavier Grand
ChIPster
Commits
b18b1efe
Verified
Commit
b18b1efe
authored
4 years ago
by
Laurent Modolo
Browse files
Options
Downloads
Patches
Plain Diff
gatk4: remove spark...
parent
8e3c7bf4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/nf_modules/gatk4/main.nf
+7
-12
7 additions, 12 deletions
src/nf_modules/gatk4/main.nf
with
7 additions
and
12 deletions
src/nf_modules/gatk4/main.nf
+
7
−
12
View file @
b18b1efe
...
...
@@ -3,7 +3,7 @@ container_url = "broadinstitute/gatk:${version}"
process variant_calling {
container = "${container_url}"
label "big_mem_m
ulti
_cpus"
label "big_mem_m
ono
_cpus"
tag "$file_id"
input:
...
...
@@ -15,8 +15,7 @@ process variant_calling {
script:
xmx_memory = "${task.memory}" - ~/\s*GB/
"""
gatk --java-options "-Xmx${xmx_memory}G" HaplotypeCallerSpark \
--spark-master local[${task.cpus}] \
gatk --java-options "-Xmx${xmx_memory}G" HaplotypeCaller \
-R ${fasta} \
-I ${bam} \
-O ${file_id}.vcf
...
...
@@ -25,7 +24,7 @@ gatk --java-options "-Xmx${xmx_memory}G" HaplotypeCallerSpark \
process filter_snp {
container = "${container_url}"
label "big_mem_m
ulti
_cpus"
label "big_mem_m
ono
_cpus"
tag "$file_id"
input:
...
...
@@ -115,7 +114,7 @@ gatk --java-options "-Xmx${xmx_memory}G" VariantFiltration \
process recalibrate_snp_table {
container = "${container_url}"
label "big_mem_m
ulti
_cpus"
label "big_mem_m
ono
_cpus"
tag "$file_id"
input:
...
...
@@ -126,8 +125,7 @@ process recalibrate_snp_table {
script:
xmx_memory = "${task.memory}" - ~/\s*GB/
"""
gatk --java-options "-Xmx${xmx_memory}G" BaseRecalibratorSpark \
--spark-master local[${task.cpus}] \
gatk --java-options "-Xmx${xmx_memory}G" BaseRecalibrator \
-R ${fasta} \
-I ${bam} \
-knownSites ${snp_file} \
...
...
@@ -162,7 +160,7 @@ gatk --java-options "-Xmx${xmx_memory}G" PrintReads \
process haplotype_caller {
container = "${container_url}"
label "big_mem_m
ulti
_cpus"
label "big_mem_m
ono
_cpus"
tag "$file_id"
input:
...
...
@@ -173,8 +171,7 @@ process haplotype_caller {
script:
xmx_memory = "${task.memory}" - ~/\s*GB/
"""
gatk --java-options "-Xmx${xmx_memory}G" HaplotypeCallerSpark \
--spark-master local[${task.cpus}] \
gatk --java-options "-Xmx${xmx_memory}G" HaplotypeCaller \
-R ${fasta} \
-I ${bam} \
-ERC GVCF \
...
...
@@ -217,7 +214,6 @@ process select_variants_snp {
xmx_memory = "${task.memory}" - ~/\s*GB/
"""
gatk --java-options "-Xmx${xmx_memory}GG" SelectVariants \
--spark-master local[${task.cpus}] \
-R ${fasta} \
-V ${vcf} \
-selectType SNP \
...
...
@@ -239,7 +235,6 @@ process select_variants_indels {
xmx_memory = "${task.memory}" - ~/\s*GB/
"""
gatk --java-options "-Xmx${xmx_memory}G" SelectVariants \
--spark-master local[${task.cpus}] \
-R ${fasta} \
-V ${vcf} \
-selectType INDEL \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment