-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update call-gSV version * Update version to v6.0.0 * Update CHANGELOG * Update metadata * Update author list
- Loading branch information
1 parent
4ebce37
commit 58df3e1
Showing
4 changed files
with
10 additions
and
6 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
Submodule pipeline-call-gSV
updated
23 files
+9 −2 | .github/dependabot.yml | |
+10 −0 | CHANGELOG.md | |
+52 −4 | README.md | |
+1 −1 | config/F16.config | |
+1 −1 | config/F32.config | |
+1 −1 | config/F72.config | |
+1 −1 | config/M64.config | |
+65 −3 | config/custom_schema_types.config | |
+15 −0 | config/methods.config | |
+13 −0 | config/schema.yaml | |
+2 −0 | config/template.config | |
+1 −1 | external/pipeline-Nextflow-config | |
+1 −1 | external/pipeline-Nextflow-module | |
+0 −6 | module/bcftools.nf | |
+0 −24 | module/delly.nf | |
+1 −7 | module/manta.nf | |
+0 −6 | module/rtgtools.nf | |
+1 −5 | module/sha512.nf | |
+0 −6 | module/vcftools.nf | |
+1 −1 | nextflow.config | |
+20 −0 | nftest.yaml | |
+46 −0 | test/config/base-resource-update.config | |
+37 −8 | test/configtest-F16.json |
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,6 +1,6 @@ | ||
--- | ||
Category: "pipeline" | ||
Description: "Nextflow pipeline to convert BAM to FASTQ, align, call gSNP, call sSNV, and call mtSNV" | ||
Description: "Nextflow pipeline to convert BAM to FASTQ, align, perform QC, assess targeted coverage, call gSNP, call sSNV, call mtSNV, call SVs, call sCNA, and perform subclonal reconstruction" | ||
Maintainers: "Chenghao Zhu <[email protected]>, Yash Patel <[email protected]>, Nicholas Wang <[email protected]>, Helena Winata <[email protected]>, Mohammed Faizal Eeman Mootor <[email protected]>" | ||
Languages: ["Nextflow"] | ||
Dependencies: ["Java", "Nextflow", "Docker"] | ||
|
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,7 +1,7 @@ | ||
// Metadata | ||
manifest { | ||
name = 'metapipeline-DNA' | ||
author = ['Yash Patel', 'Chenghao Zhu', 'Helena Winata', 'Alfredo Enrique Gonzalez', 'Nicholas Wang', 'Sorel Fitz-Gibbon', 'Mohammed Faizal Eeman Mootor', 'Nicole Zeltser'] | ||
description = 'Nextflow pipeline to convert BAM to FASTQ, align, call gSNP, call sSNV, call gSV, call sSV and call mtSNV' | ||
version = '6.0.0-rc.6' | ||
author = ['Yash Patel', 'Chenghao Zhu', 'Helena Winata', 'Alfredo Enrique Gonzalez', 'Nicholas Wang', 'Sorel Fitz-Gibbon', 'Mohammed Faizal Eeman Mootor', 'Nicole Zeltser', 'Nicholas Wiltsie', 'Takafumi Yamaguchi'] | ||
description = 'Nextflow pipeline to convert BAM to FASTQ, align, perform QC, assess targeted coverage, call gSNP, call sSNV, call mtSNV, call SVs, call sCNA, and perform subclonal reconstruction' | ||
version = '6.0.0' | ||
} |