1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
#include "bcftools.pysam.h"
/* vcfhead.c -- view VCF/BCF file headers.
Copyright (C) 2021 University of Glasgow.
Author: John Marshall <jmarshall@hey.com>
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 <getopt.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <htslib/kstring.h>
#include <htslib/vcf.h>
#include "bcftools.h"
int main_vcfhead(int argc, char *argv[])
{
static const char usage[] =
"\n"
"About: Displays VCF/BCF headers and optionally the first few variant records\n"
"Usage: bcftools head [OPTION]... [FILE]\n"
"\n"
"Options:\n"
" -h, --headers INT Display INT header lines [all]\n"
" -n, --records INT Display INT variant record lines [none]\n"
"\n";
static const struct option loptions[] = {
{ "headers", required_argument, NULL, 'h' },
{ "records", required_argument, NULL, 'n' },
{ NULL, 0, NULL, 0 }
};
int all_headers = 1;
uint64_t nheaders = 0;
uint64_t nrecords = 0;
int c, nargs;
while ((c = getopt_long(argc, argv, "h:n:", loptions, NULL)) >= 0)
switch (c) {
case 'h': all_headers = 0; nheaders = strtoull(optarg, NULL, 0); break;
case 'n': nrecords = strtoull(optarg, NULL, 0); break;
default:
fputs(usage, bcftools_stderr);
return EXIT_FAILURE;
}
nargs = argc - optind;
if (nargs == 0 && isatty(STDIN_FILENO)) {
fputs(usage, bcftools_stdout);
return EXIT_SUCCESS;
}
else if (nargs > 1) {
fputs(usage, bcftools_stderr);
return EXIT_FAILURE;
}
const char *fname = (nargs == 1)? argv[optind] : "-";
vcfFile *fp = bcf_open(fname, "r");
if (fp == NULL) {
if (strcmp(fname, "-") != 0)
error_errno("[%s] Can't open \"%s\"", __func__, fname);
else
error_errno("[%s] Can't open standard input", __func__);
}
bcf_hdr_t *hdr = bcf_hdr_read(fp);
if (hdr == NULL) {
bcf_close(fp);
if (strcmp(fname, "-") != 0)
error("[%s] Can't read headers from \"%s\"\n", __func__, fname);
else
error("[%s] Can't read headers\n", __func__);
}
kstring_t str = KS_INITIALIZE;
if (all_headers) {
bcf_hdr_format(hdr, 0, &str);
fputs(ks_str(&str), bcftools_stdout);
}
else if (nheaders > 0) {
bcf_hdr_format(hdr, 0, &str);
char *lim = str.s;
uint64_t n;
for (n = 0; n < nheaders; n++) {
lim = strchr(lim, '\n');
if (lim) lim++;
else break;
}
if (lim) *lim = '\0';
fputs(ks_str(&str), bcftools_stdout);
}
if (nrecords > 0) {
bcf1_t *rec = bcf_init();
uint64_t n;
for (n = 0; n < nrecords && bcf_read(fp, hdr, rec) >= 0; n++) {
ks_clear(&str);
if (vcf_format(hdr, rec, &str) >= 0)
fputs(ks_str(&str), bcftools_stdout);
else
fprintf(bcftools_stderr, "[%s] Record #%"PRIu64 " is invalid\n", __func__, n+1);
}
bcf_destroy(rec);
}
ks_free(&str);
bcf_hdr_destroy(hdr);
bcf_close(fp);
return EXIT_SUCCESS;
}
|