-
Notifications
You must be signed in to change notification settings - Fork 7
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
Added variant callers for benchmarking (resolves #97) #99
base: master
Are you sure you want to change the base?
Added variant callers for benchmarking (resolves #97) #99
Conversation
2929f96
to
e1f5bf6
Compare
Jenkins, retest this please. |
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.
Thanks @fnothaft for adding all of these callers!
end_time = time.time() | ||
log_runtime(job, start_time, end_time, 'fasta_generate_regions') | ||
|
||
docker_parameters = ['--rm', |
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.
more DRY to have a base_docker_parameters
as you're just extending to add --entrypoint
.
@@ -2,6 +2,17 @@ | |||
import subprocess | |||
|
|||
|
|||
def log_runtime(job, start, end, cmd): |
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.
Given the repetitiveness of having to call time.time()
before and after every dockerCall along with this function, would this be better refactored as a decorator for dockerCall
?
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.
Wait 'til you see where I'm going with this in #101...
Added: * FreeBayes * Platypus * 16GT * Strelka (and Manta) * Samtools Mpileup/BCFtools call Also, ported over GATK3 HaplotypeCaller from toil-scripts.
e1f5bf6
to
ed454b0
Compare
Rebased. Consider this good to merge for now. |
Added: