-
Notifications
You must be signed in to change notification settings - Fork 7
To process targeted sequencing with a target BED #635
Conversation
germlineVC.nf
Outdated
concatOptions = "-i ${genomeIndex} -c ${task.cpus} -o ${outputFile} " | ||
|
||
""" | ||
${workflow.projectDir}/scripts/concatenateVCFs.sh ${concatOptions} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should put the new concatenateVCFs.sh
script in bin
instead, it's directly in the $PATH
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, thanks, I am still testing, but will move
I noticed that you updated Sarek-data as well, don't forget to update the submodule in Sarek as well |
scripts/wrapper.sh
Outdated
echo "$(tput setaf 1)nextflow run $@ -profile $PROFILE --genome $GENOME --genome_base $GENOMEBASE --tag $TAG --verbose$(tput sgr0) --max_cpus ${CPUS}" | ||
nextflow run $@ -profile $PROFILE --genome $GENOME --genome_base $GENOMEBASE --tag $TAG --verbose --max_cpus ${CPUS} | ||
else | ||
echo "$(tput setaf 1)nextflow run $@ -profile $PROFILE --genome $GENOME --genome_base $GENOMEBASE --tag $TAG --verbose$(tput sgr0) --max_cpus ${CPUS}" --targetBED ${TARGETBED} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be
echo "$(tput setaf 1)nextflow run $@ -profile $PROFILE --genome $GENOME --genome_base $GENOMEBASE --tag $TAG --verbose$(tput sgr0) --max_cpus ${CPUS} --targetBED ${TARGETBED}"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a typo with the "
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
CHANGELOG.md
Outdated
- [#620](https://github.com/SciLifeLab/Sarek/pull/620) - Add `tmp/` to `.gitignore` | ||
- [#625](https://github.com/SciLifeLab/Sarek/pull/625) - Add [`pathfindr`](https://github.com/NBISweden/pathfindr) as a submodule | ||
- [#639](https://github.com/SciLifeLab/Sarek/pull/639) - Add a complete example analysis to docs | ||
- [#629](https://github.com/SciLifeLab/Sarek/pull/629) - Add a complete example analysis to docs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually this one really was the #639
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It has not to be the PR name.
It could be a shorter description, since a PR can fall into Added
, Changed,
Removedor even
Fixedcategory at the same time. For me
Addedis anything new and
Changed` is anything updated
To process targeted sequencing with a target BED
Changes to make possible to add a BED file and run targeted processing for both germline and somatic calls. To be tested on real WES data.
PR checklist
dev
branchmaster
branch./scripts/test.sh -p docker -t ALL
).docs
is updatedCHANGELOG.md
is updatedREADME.md
is updatedLearn more about contributing: https://github.com/SciLifeLab/Sarek/blob/master/.github/CONTRIBUTING.md