/* plugins/missing2ref.c -- sets missing genotypes to reference allele. Copyright (C) 2014 Genome Research Ltd. Author: Petr Danecek Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include bcf_hdr_t *in_hdr, *out_hdr; int32_t *gts = NULL, mgts = 0; int *arr = NULL, marr = 0; uint64_t nchanged = 0; int new_gt = bcf_gt_unphased(0); int use_major = 0; const char *about(void) { return "Set missing genotypes (\"./.\") to ref or major allele (\"0/0\" or \"0|0\").\n"; } const char *usage(void) { return "\n" "About: Set missing genotypes\n" "Usage: bcftools +missing2ref [General Options] -- [Plugin Options]\n" "Options:\n" " run \"bcftools plugin\" for a list of common options\n" "\n" "Plugin options:\n" " -p, --phased Set to \"0|0\" \n" " -m, --major Set to major allele \n" "\n" "Example:\n" " bcftools +missing2ref in.vcf -- -p\n" " bcftools +missing2ref in.vcf -- -p -m\n" "\n"; } int init(int argc, char **argv, bcf_hdr_t *in, bcf_hdr_t *out) { int c; static struct option loptions[] = { {"phased",0,0,'p'}, {"major",0,0,'m'}, {0,0,0,0} }; while ((c = getopt_long(argc, argv, "mp?h",loptions,NULL)) >= 0) { switch (c) { case 'p': new_gt = bcf_gt_phased(0); break; case 'm': use_major = 1; break; case 'h': case '?': default: fprintf(stderr,"%s", usage()); exit(1); break; } } in_hdr = in; out_hdr = out; return 0; } bcf1_t *process(bcf1_t *rec) { int ngts = bcf_get_genotypes(in_hdr, rec, >s, &mgts); int i, changed = 0; // Calculating allele frequency for each allele and determining major allele // only do this if use_major is true int majorAllele = -1; int maxAC = -1; int an = 0; if(use_major == 1){ hts_expand(int,rec->n_allele,marr,arr); int ret = bcf_calc_ac(in_hdr,rec,arr,BCF_UN_FMT); if(ret > 0){ for(i=0; i < rec->n_allele; ++i){ an += arr[i]; if(*(arr+i) > maxAC){ maxAC = *(arr+i); majorAllele = i; } } } else{ fprintf(stderr,"Warning: Could not calculate allele count at position %d\n", rec->pos); exit(1); } // replacing new_gt by major allele if(bcf_gt_is_phased(new_gt)) new_gt = bcf_gt_phased(majorAllele); else new_gt = bcf_gt_unphased(majorAllele); } // replace gts for (i=0; i