Skip to content

Commit

Permalink
F32 config and v9.2.0 (#112)
Browse files Browse the repository at this point in the history
* Add F32 config

* Bump versions for release
  • Loading branch information
yashpatel6 authored Nov 20, 2022
1 parent e95c283 commit ea2ca27
Show file tree
Hide file tree
Showing 4 changed files with 105 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---

## [Unreleased]

---

## [9.2.0] - 2022-11-18
### Added
- `F32.config` for resource allocation
### Changed
- Use external resource allocation module
- Parameterize Docker registry
Expand Down
4 changes: 4 additions & 0 deletions config/F16.config
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ process {
cpus = 2
memory = 4.GB
}
withName: deduplicate_records_SAMtools {
cpus = 2
memory = 4.GB
}
withName: run_GetPileupSummaries_GATK {
cpus = 1
memory = 5.GB
Expand Down
94 changes: 94 additions & 0 deletions config/F32.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
process {
withName: run_validate_PipeVal {
cpus = 1
memory = 1.GB
}
withName: run_HaplotypeCallerVCF_GATK {
cpus = 2
memory = 4.GB
}
withName: run_HaplotypeCallerGVCF_GATK {
cpus = 2
memory = 4.GB
}
withName: run_MergeVcfs_Picard {
cpus = 1
memory = 15.GB
}
withName: run_RealignerTargetCreator_GATK {
cpus = 4
memory = 6.GB
}
withName: run_IndelRealigner_GATK {
cpus = 4
memory = 6.GB
}
withName: run_BaseRecalibrator_GATK {
cpus = 1
memory = 60.GB
}
withName: run_ApplyBQSR_GATK {
cpus = 1
memory = 1.GB
}
withName: run_index_SAMtools {
cpus = 1
memory = 1.GB
}
withName: run_MergeSamFiles_Picard {
cpus = 2
memory = 4.GB
}
withName: deduplicate_records_SAMtools {
cpus = 2
memory = 4.GB
}
withName: run_GetPileupSummaries_GATK {
cpus = 1
memory = 5.GB
}
withName: run_CalculateContamination_GATK {
cpus = 1
memory = 5.GB
}
withName: run_DepthOfCoverage_GATK {
cpus = 1
memory = 10.GB
}
withName: remove_intermediate_files {
cpus = 1
memory = 1.GB
}
withName: extract_GenomeIntervals {
cpus = 1
memory = 1.GB
}
withName: run_SplitIntervals_GATK {
cpus = 1
memory = 1.GB
}
withName: run_reheader_SAMtools {
cpus = 1
memory = 1.GB
}
withName: calculate_sha512 {
cpus = 1
memory = 1.GB
}
withName: run_VariantRecalibratorSNP_GATK {
cpus = 10
memory = 10.GB
}
withName: run_VariantRecalibratorINDEL_GATK {
cpus = 10
memory = 10.GB
}
withName: run_ApplyVQSR_GATK {
cpus = 10
memory = 10.GB
}
withName: filter_gSNP_GATK {
cpus = 10
memory = 10.GB
}
}
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ manifest {
name = 'call-gSNP'
author = ["Yash Patel", "Shu Tao", "Stefan Eng"]
description = 'Nextflow pipeline to call germline short variants in single or normal-tumour paired mode'
version = '9.1.0'
version = '9.2.0'
}

0 comments on commit ea2ca27

Please sign in to comment.