-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/fastq-tbprofiler-and-spotyping'
- Loading branch information
Showing
13 changed files
with
972 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# CHANGELOG FOR THE MAGMA PIPELINE VERSIONS | ||
<!-- https://keepachangelog.com/en/1.1.0/ --> | ||
|
||
|
||
## v2.0.0 | ||
|
||
|
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,65 @@ | ||
/* | ||
* Copyright (c) 2021-2024 MAGMA pipeline authors, see https://doi.org/10.1371/journal.pcbi.1011648 | ||
* | ||
* This file is part of MAGMA pipeline, see https://github.com/TORCH-Consortium/MAGMA | ||
* | ||
* For quick overview of GPL-3 license, please refer | ||
* https://www.tldrlegal.com/license/gnu-general-public-license-v3-gpl-3 | ||
* | ||
* - You MUST keep this license with original authors in your copy | ||
* - You MUST acknowledge the original source of this software | ||
* - You MUST state significant changes made to the original software | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program . If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
process { | ||
|
||
|
||
withName: | ||
'.*SPOTYPING.*' { | ||
container = "quay.io/biocontainers/spotyping:2.1--hdfd78af_4" | ||
} | ||
|
||
withName: | ||
'.*RDANALYZER.*' { | ||
container = "quay.io/biocontainers/rd-analyzer:1.01--hdfd78af_0" | ||
} | ||
|
||
|
||
withName: | ||
'.*TBPROFILER.*' { | ||
container = "ghcr.io/torch-consortium/magma/biocontainer-tbprofiler:6.3.0--1" | ||
} | ||
|
||
withName: | ||
'NTMPROFILER.*' { | ||
container = "ghcr.io/torch-consortium/magma/biocontainer-ntmprofiler:0.4.0" | ||
} | ||
|
||
withName: | ||
'ISMAPPER.*|GATK.*|LOFREQ.*|DELLY.*|MULTIQC.*|FASTQC.*|UTILS.*|FASTQ.*|SAMPLESHEET.*' { | ||
container = "ghcr.io/torch-consortium/magma/magma-container-1:2.0.0" | ||
} | ||
|
||
withName: | ||
'BWA.*|IQTREE.*|SNPDISTS.*|SNPSITES.*|BCFTOOLS.*|BGZIP.*|SAMTOOLS.*|SNPEFF.*|CLUSTERPICKER.*' { | ||
container = "ghcr.io/torch-consortium/magma/magma-container-2:1.1.1" | ||
} | ||
|
||
} | ||
|
||
|
||
apptainer { | ||
enabled = true | ||
} |
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
Oops, something went wrong.