-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: processing vembrane config #330
Changes from 1 commit
e2a1e55
6fcf048
9c9e688
683e62b
3714872
a886c2b
7269264
54cc7e9
0deaf0d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ rule mark_duplicates: | |
#https://broadinstitute.github.io/picard/faq.html | ||
mem_mb=3000, | ||
wrapper: | ||
"v2.5.0/bio/picard/markduplicates" | ||
"v4.2.0/bio/picard/markduplicates" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above: if such an update is not really necessary for anything in this pull request, I would defer updating to whenever this is really necessary. Otherwise this will trigger reruns in previously workflows where we update to a newer workflow version... |
||
|
||
|
||
rule calc_consensus_reads: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ rule download_revel: | |
conda: | ||
"../envs/curl.yaml" | ||
shell: | ||
"curl https://rothsj06.dmz.hpc.mssm.edu/revel-v1.3_all_chromosomes.zip -o {output} &> {log}" | ||
"curl https://zenodo.org/records/7072866/files/revel-v1.3_all_chromosomes.zip -o {output} &> {log}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice, let's hope this stays more robust in the long-term and that newer versions will also end up on Zenodo! |
||
|
||
|
||
rule process_revel_scores: | ||
|
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.
Is this necessary for anything (like a bug fix in a newer version of freebayes or the wrapper)? Because otherwise I would leave this as is, so as not to trigger rerunning of the candidate calling in workflows that update to a newer release after merging this PR...