You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
I'm running P2 with a command line that includes --cnvnator --genotype, using the latest docker image as of today. The job never terminates, but instead is left sitting with a single process running which is python /get_uncalled_cnvnator.py.
The offending code is: python /get_uncalled_cnvnator.py | python /add_ciend.py 1000 > cnvnator.ci.vcf < cnvnator.vcf
The problem is that the input redirect is attached to the second process, not the first. Thus add-ciend.py runs on the input VCF and generates the output VCF with all cnvnator calls and get_uncalled_cnvnator.py just sits there waiting for someone to write to it's stdin.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm running P2 with a command line that includes
--cnvnator --genotype
, using thelatest
docker image as of today. The job never terminates, but instead is left sitting with a single process running which ispython /get_uncalled_cnvnator.py
.The problem occurs here: https://github.com/dnanexus/parliament2/blob/master/parliament2.sh#L469
The offending code is:
python /get_uncalled_cnvnator.py | python /add_ciend.py 1000 > cnvnator.ci.vcf < cnvnator.vcf
The problem is that the input redirect is attached to the second process, not the first. Thus
add-ciend.py
runs on the input VCF and generates the output VCF with all cnvnator calls andget_uncalled_cnvnator.py
just sits there waiting for someone to write to it's stdin.The text was updated successfully, but these errors were encountered: