Skip to content

Commit

Permalink
Modified ALT fields in VCF header
Browse files Browse the repository at this point in the history
  • Loading branch information
asylvz committed Aug 15, 2019
1 parent 4cbd55a commit 7954f36
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion variants.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,14 @@ void print_vcf_header( FILE *fpOut, bam_info** in_bams, parameters *params)
"##FORMAT=<ID=RP,Number=1,Type=Integer,Description=\"Read Pair Support\">\n"
"##FORMAT=<ID=SR,Number=1,Type=Integer,Description=\"Split Read Support\">\n";

char header_alt[]="##ALT=<ID=DEL,Description=\"Deletion\">\n";
char header_alt[]="##ALT=<ID=DEL,Description=\"Deletion\">\n"
"##ALT=<ID=DEL:ME,Description=\"Deletion of mobile element\">\n"
"##ALT=<ID=INS,Description=\"Novel sequence insertion\">\n"
"##ALT=<ID=INS:ME,Description=\"Mobile element insertion\">\n"
"##ALT=<ID=MT,Description=\"Nuclear mitochondrial insertion\">\n"
"##ALT=<ID=DUP:TANDEM,Description=\"Tandem duplication\">\n"
"##ALT=<ID=DUP:ISP,Description=\"Interspersed duplication\">\n"
"##ALT=<ID=INV,Description=\"Inversion\">\n";
time_t rawtime;
struct tm * timeinfo;

Expand Down

0 comments on commit 7954f36

Please sign in to comment.