-
Notifications
You must be signed in to change notification settings - Fork 424
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 #252 from FriederikeHanssen/add_index
Use 20.07-RC1, add skip_qc to MD
- Loading branch information
Showing
8 changed files
with
76 additions
and
75 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
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,40 @@ | ||
// process BASE_RECALIBRATION { | ||
// label 'cpus_1' | ||
|
||
// tag "${idPatient}-${idSample}-${intervalBed.baseName}" | ||
|
||
// input: | ||
// tuple idPatient, idSample, file(bam), file(bai), file(intervalBed) //from bamBaseRecalibrator | ||
// path dbsnp //from dbsnp | ||
// path dbsnpIndex// from dbsnp_tbi | ||
// path fasta //from fasta | ||
// path dict // from dict | ||
// path fastaFai // from fai | ||
// path knownIndels // from known_indels | ||
// path knownIndelsIndex // from known_indels_tbi | ||
|
||
// output: | ||
// tuple idPatient, idSample, file "${prefix}${idSample}.recal.table", emit: tableGatherBQSRReports | ||
// tuple idPatient, idSample, emit: recalTableTSVnoInt | ||
|
||
// //when: params.known_indels | ||
|
||
// script: | ||
// dbsnpOptions = params.dbsnp ? "--known-sites ${dbsnp}" : "" | ||
// knownOptions = params.known_indels ? knownIndels.collect{"--known-sites ${it}"}.join(' ') : "" | ||
// prefix = params.no_intervals ? "" : "${intervalBed.baseName}_" | ||
// intervalsOptions = params.no_intervals ? "" : "-L ${intervalBed}" | ||
// // TODO: --use-original-qualities ??? | ||
// """ | ||
// gatk --java-options -Xmx${task.memory.toGiga()}g \ | ||
// BaseRecalibrator \ | ||
// -I ${bam} \ | ||
// -O ${prefix}${idSample}.recal.table \ | ||
// --tmp-dir . \ | ||
// -R ${fasta} \ | ||
// ${intervalsOptions} \ | ||
// ${dbsnpOptions} \ | ||
// ${knownOptions} \ | ||
// --verbosity INFO | ||
// """ | ||
// } |
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