-
Notifications
You must be signed in to change notification settings - Fork 603
Simple way to have VariantsToTable output all fields. Just want the entire VCF as a table. #7677
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
Comments
@abalter Having |
@droazen -- is there a way to simply list all the possible fields in the header? Then I could use that list to create an input for the |
@abalter The complete list of fields should be present in the VCF header, but unfortunately I don't know of a convenient way to extract them apart from the manual method. It would be pretty simple to write a script or GATK tool to parse the VCF header and list all the fields, but the best solution would be to patch the |
Key word here is "should be", which isn't always the case. |
VariantsToTable now outputs all fields declared in the VCF header when no fields are selected. Added integration tests to cover this new functionality Fixes #7677
VariantsToTable now outputs all fields declared in the VCF header when no fields are selected. Added integration tests to cover this new functionality Fixes #7677
I'm trying, for example,
gatk VariantsToTable -V clinvar.vcf -O clinvar.tsv
It goes through the motions and displays progress. The output file is created, and it has the right number of lines. But the lines are all empty!
Maybe add a default value to the
-F
switch?The text was updated successfully, but these errors were encountered: