-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #256 from uclahs-cds/sfitz-add-F8
Sfitz add F8 and adjust F16 and F32 configs
- Loading branch information
Showing
7 changed files
with
178 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
// Other processes will only run one at a time, so | ||
// we don't need to control their resources. | ||
|
||
process { | ||
withName: run_validate_PipeVal { | ||
cpus = 1 | ||
memory = 1.GB | ||
} | ||
withName: call_sSNV_SomaticSniper { | ||
cpus = 1 | ||
memory = 1.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 2.GB | ||
} | ||
} | ||
} | ||
withName: convert_BAM2Pileup_SAMtools { | ||
cpus = 1 | ||
memory = 1.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 2.GB | ||
} | ||
} | ||
} | ||
withName: create_IndelCandidate_SAMtools { | ||
cpus = 1 | ||
memory = 1.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 2.GB | ||
} | ||
} | ||
} | ||
withName: call_sIndel_Manta { | ||
cpus = 4 | ||
memory = 3.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 3.GB | ||
} | ||
} | ||
} | ||
withName: call_sSNV_Strelka2 { | ||
cpus = 4 | ||
memory = 2.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 2.GB | ||
} | ||
} | ||
} | ||
withName: call_sSNV_Mutect2 { | ||
cpus = 1 | ||
memory = 3.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 2.GB | ||
} | ||
} | ||
} | ||
withName: run_LearnReadOrientationModel_GATK { | ||
cpus = 1 | ||
memory = 8.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'exponential' | ||
operand = 2 | ||
} | ||
} | ||
} | ||
withName: call_sSNV_MuSE { | ||
cpus = 4 | ||
memory = 10.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 6.GB | ||
} | ||
} | ||
} | ||
withName: run_sump_MuSE { | ||
cpus = 4 | ||
memory = 12.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 4.GB | ||
} | ||
} | ||
} | ||
withName: plot_VennDiagram_R { | ||
cpus = 2 | ||
memory = 5.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 10.GB | ||
} | ||
} | ||
} | ||
withName: concat_VCFs_BCFtools { | ||
cpus = 2 | ||
memory = 5.GB | ||
retry_strategy { | ||
memory { | ||
strategy = 'add' | ||
operand = 10.GB | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ Maintainers: [[email protected]] | |
Contributors: ['Mao Tian', 'Bugh Caden', 'Helena Winata', 'Yash Patel', 'Sorel Fitz-Gibbon'] | ||
Languages: ['Docker', 'Nextflow'] | ||
Dependencies: ['Docker', 'Nextflow'] | ||
Tools: ['GATK 4.4.0.0', 'SomaticSniper v1.0.5.0', 'SAMtools v1.16.1', 'Strelka2 v2.9.10', 'Manta v1.6.0', 'MuSE v2.0.4', 'BCFtools v1.17', 'R v4.3.1', 'VennDiagram v1.7.3', 'vcf2maf v1.6.18'] | ||
Tools: ['GATK 4.4.0.0', 'SomaticSniper v1.0.5.0', 'Strelka2 v2.9.10', 'Manta v1.6.0', 'MuSE v2.0.4', 'BCFtools v1.17', 'R v4.3.1', 'VennDiagram v1.7.3', 'vcf2maf v1.6.18'] |