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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
|
/* vcfplugin.c -- plugin modules for operating on VCF/BCF files.
Copyright (C) 2013-2017 Genome Research Ltd.
Author: Petr Danecek <pd3@sanger.ac.uk>
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 "config.h"
#include <stdio.h>
#include <strings.h>
#include <unistd.h>
#include <getopt.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
#include <math.h>
#include <htslib/vcf.h>
#include <htslib/synced_bcf_reader.h>
#include <htslib/kseq.h>
#include <htslib/khash_str2int.h>
#include <dlfcn.h>
#include "bcftools.h"
#include "vcmp.h"
#include "filter.h"
#ifdef ENABLE_BCF_PLUGINS
typedef struct _plugin_t plugin_t;
/**
* Plugin API:
* ----------
* const char *about(void)
* - short description used by 'bcftools plugin -lv'
*
* const char *usage(void)
* - longer description used by 'bcftools +name -h'
*
* int run(int argc, char **argv)
* - if implemented, the control is immediately handed over to the plugin,
* none of the init/process/destroy functions is called. Return 0 on
* success or non-zero value on error.
*
* int init(int argc, char **argv, bcf_hdr_t *in_hdr, bcf_hdr_t *out_hdr)
* - called once at startup, allows to initialize local variables.
* Return 1 to suppress normal VCF/BCF header output, -1 on critical
* errors, 0 otherwise.
*
* bcf1_t *process(bcf1_t *rec)
* - called for each VCF record, return NULL for no output
*
* void destroy(void)
* - called after all lines have been processed to clean up
*/
typedef void (*dl_version_f) (const char **, const char **);
typedef int (*dl_run_f) (int, char **);
typedef int (*dl_init_f) (int, char **, bcf_hdr_t *, bcf_hdr_t *);
typedef char* (*dl_about_f) (void);
typedef char* (*dl_usage_f) (void);
typedef bcf1_t* (*dl_process_f) (bcf1_t *);
typedef void (*dl_destroy_f) (void);
struct _plugin_t
{
int argc;
char *name, **argv;
dl_version_f version;
dl_run_f run;
dl_init_f init;
dl_about_f about;
dl_usage_f usage;
dl_process_f process;
dl_destroy_f destroy;
void *handle;
};
struct _args_t;
typedef struct _rm_tag_t
{
char *key;
int hdr_id;
void (*handler)(struct _args_t *, bcf1_t *, struct _rm_tag_t *);
}
rm_tag_t;
typedef struct
{
char **cols;
int ncols, mcols;
char **als;
int nals, mals;
kstring_t line;
int rid, start, end;
}
annot_line_t;
typedef struct _annot_col_t
{
int icol, replace;
char *hdr_key;
int (*setter)(struct _args_t *, bcf1_t *, struct _annot_col_t *, void*);
}
annot_col_t;
// Logic of the filters: include or exclude sites which match the filters?
#define FLT_INCLUDE 1
#define FLT_EXCLUDE 2
typedef struct _args_t
{
bcf_srs_t *files;
bcf_hdr_t *hdr, *hdr_out;
htsFile *out_fh;
int output_type, n_threads;
filter_t *filter;
char *filter_str;
int filter_logic; // include or exclude sites which match the filters? One of FLT_INCLUDE/FLT_EXCLUDE
plugin_t plugin;
int nplugin_paths;
char **plugin_paths;
char **argv, *output_fname, *regions_list, *targets_list;
int argc, drop_header, verbose, record_cmd_line;
}
args_t;
char *msprintf(const char *fmt, ...);
static void add_plugin_paths(args_t *args, const char *path)
{
while (1)
{
size_t len = strcspn(path, ":");
if ( len == 0 )
{
#ifdef PLUGINPATH
add_plugin_paths(args, PLUGINPATH);
#endif
}
else
{
char *dir = (char *) malloc(len + 1);
strncpy(dir, path, len);
dir[len] = '\0';
struct stat st;
if ( stat(dir, &st) == 0 )
{
args->plugin_paths = (char**) realloc(args->plugin_paths,sizeof(char*)*(args->nplugin_paths+1));
args->plugin_paths[args->nplugin_paths] = dir;
args->nplugin_paths++;
if ( args->verbose > 1 ) fprintf(stderr, "plugin directory %s .. ok\n", dir);
}
else
{
if ( args->verbose > 1 ) fprintf(stderr, "plugin directory %s .. %s\n", dir, strerror(errno));
free(dir);
}
}
path += len;
if ( *path == ':' ) path++;
else break;
}
}
static void init_plugin_paths(args_t *args)
{
if ( args->nplugin_paths!=-1 ) return;
args->nplugin_paths = 0;
args->plugin_paths = NULL;
char *path = getenv("BCFTOOLS_PLUGINS");
add_plugin_paths(args, path ? path : "");
}
static void *dlopen_plugin(args_t *args, const char *fname)
{
init_plugin_paths(args);
void *handle;
char *tmp;
if ( fname[0]!='/' ) // not an absolute path
{
int i;
for (i=0; i<args->nplugin_paths; i++)
{
tmp = msprintf("%s/%s%s", args->plugin_paths[i], fname, PLUGIN_EXT);
handle = dlopen(tmp, RTLD_NOW); // valgrind complains about unfreed memory, not our problem though
if ( args->verbose > 1 )
{
if ( !handle ) fprintf(stderr,"%s:\n\tdlopen .. %s\n", tmp,dlerror());
else fprintf(stderr,"%s:\n\tdlopen .. ok\n", tmp);
}
free(tmp);
if ( handle ) return handle;
}
}
handle = dlopen(fname, RTLD_NOW);
if ( args->verbose > 1 )
{
if ( !handle ) fprintf(stderr,"%s:\n\tdlopen .. %s\n", fname,dlerror());
else fprintf(stderr,"%s:\n\tdlopen .. ok\n", fname);
}
return handle;
}
static void print_plugin_usage_hint(void)
{
fprintf(stderr, "\nNo functional bcftools plugins were found");
if ( !getenv("BCFTOOLS_PLUGINS") )
fprintf(stderr,". The environment variable BCFTOOLS_PLUGINS is not set.\n\n");
else
fprintf(stderr,
" in\n\tBCFTOOLS_PLUGINS=\"%s\".\n\n"
"- Is the plugin path correct?\n\n"
"- Run \"bcftools plugin -lv\" for more detailed error output.\n"
"\n",
getenv("BCFTOOLS_PLUGINS")
);
}
static int load_plugin(args_t *args, const char *fname, int exit_on_error, plugin_t *plugin)
{
plugin->name = strdup(fname);
plugin->handle = dlopen_plugin(args, fname);
if ( !plugin->handle )
{
if ( exit_on_error )
{
print_plugin_usage_hint();
error("Could not load \"%s\".\n\n", fname);
}
return -1;
}
dlerror();
plugin->init = (dl_init_f) dlsym(plugin->handle, "init");
char *ret = dlerror();
if ( ret )
plugin->init = NULL;
else
if ( args->verbose > 1 ) fprintf(stderr,"\tinit .. ok\n");
plugin->run = (dl_run_f) dlsym(plugin->handle, "run");
ret = dlerror();
if ( ret )
plugin->run = NULL;
else
if ( args->verbose > 1 ) fprintf(stderr,"\trun .. ok\n");
if ( !plugin->init && !plugin->run )
{
if ( exit_on_error ) error("Could not initialize %s, neither run or init found \n", plugin->name);
else if ( args->verbose > 1 ) fprintf(stderr,"\tinit/run .. not found\n");
return -1;
}
plugin->version = (dl_version_f) dlsym(plugin->handle, "version");
ret = dlerror();
if ( ret )
{
if ( exit_on_error ) error("Could not initialize %s, version string not found\n", plugin->name);
else if ( args->verbose > 1 ) fprintf(stderr,"\tversion .. not found\n");
return -1;
}
plugin->about = (dl_about_f) dlsym(plugin->handle, "about");
ret = dlerror();
if ( ret )
{
if ( exit_on_error ) error("Could not initialize %s: %s\n", plugin->name, ret);
return -1;
}
plugin->usage = (dl_about_f) dlsym(plugin->handle, "usage");
ret = dlerror();
if ( ret )
plugin->usage = plugin->about;
if ( plugin->run ) return 0;
plugin->process = (dl_process_f) dlsym(plugin->handle, "process");
ret = dlerror();
if ( ret )
{
if ( exit_on_error ) error("Could not initialize %s: %s\n", plugin->name, ret);
return -1;
}
plugin->destroy = (dl_destroy_f) dlsym(plugin->handle, "destroy");
ret = dlerror();
if ( ret )
{
if ( exit_on_error ) error("Could not initialize %s: %s\n", plugin->name, ret);
return -1;
}
return 0;
}
static void init_plugin(args_t *args)
{
static int warned_bcftools = 0, warned_htslib = 0;
int ret = args->plugin.init(args->plugin.argc,args->plugin.argv,args->hdr,args->hdr_out);
if ( ret<0 ) error("The plugin exited with an error.\n");
const char *bver, *hver;
args->plugin.version(&bver, &hver);
if ( strcmp(bver,bcftools_version()) && !warned_bcftools )
{
fprintf(stderr,"WARNING: bcftools version mismatch .. bcftools at %s, the plugin \"%s\" at %s\n", bcftools_version(),args->plugin.name,bver);
warned_bcftools = 1;
}
if ( strcmp(hver,hts_version()) && !warned_htslib )
{
fprintf(stderr,"WARNING: htslib version mismatch .. bcftools at %s, the plugin \"%s\" at %s\n", hts_version(),args->plugin.name,hver);
warned_htslib = 1;
}
args->drop_header += ret;
}
static int cmp_plugin_name(const void *p1, const void *p2)
{
plugin_t *a = (plugin_t*) p1;
plugin_t *b = (plugin_t*) p2;
return strcmp(a->name,b->name);
}
static int list_plugins(args_t *args)
{
plugin_t *plugins = NULL;
int nplugins = 0, mplugins = 0;
init_plugin_paths(args);
kstring_t str = {0,0,0};
int plugin_ext_len = strlen(PLUGIN_EXT);
int i;
for (i=0; i<args->nplugin_paths; i++)
{
DIR *dp = opendir(args->plugin_paths[i]);
if ( dp==NULL ) continue;
struct dirent *ep;
while ( (ep=readdir(dp)) )
{
int len = strlen(ep->d_name);
if ( strcasecmp(PLUGIN_EXT,ep->d_name+len-plugin_ext_len) ) continue;
str.l = 0;
ksprintf(&str,"%s/%s", args->plugin_paths[i],ep->d_name);
hts_expand(plugin_t, nplugins+1, mplugins, plugins);
if ( load_plugin(args, str.s, 0, &plugins[nplugins]) < 0 ) continue;
nplugins++;
str.l = 0;
kputs(ep->d_name, &str);
int l = str.l - 1;
while ( l>=0 && str.s[l]!='.' ) l--;
if ( l>=0 ) str.s[l] = 0;
free(plugins[nplugins-1].name);
plugins[nplugins-1].name = strdup(str.s); // use a short name
}
closedir(dp);
}
if ( nplugins )
{
qsort(plugins, nplugins, sizeof(plugins[0]), cmp_plugin_name);
for (i=0; i<nplugins; i++)
{
if ( args->verbose )
printf("\n-- %s --\n%s", plugins[i].name, plugins[i].about());
else
printf("%s\n", plugins[i].name);
}
if ( args->verbose ) printf("\n");
}
else
print_plugin_usage_hint();
free(str.s);
return nplugins ? 0 : 1;
}
static void init_data(args_t *args)
{
args->hdr = args->files->readers[0].header;
args->hdr_out = bcf_hdr_dup(args->hdr);
init_plugin(args);
if ( args->filter_str )
args->filter = filter_init(args->hdr, args->filter_str);
if (args->record_cmd_line) bcf_hdr_append_version(args->hdr_out, args->argc, args->argv, "bcftools_plugin");
if ( !args->drop_header )
{
args->out_fh = hts_open(args->output_fname,hts_bcf_wmode(args->output_type));
if ( args->out_fh == NULL ) error("Can't write to \"%s\": %s\n", args->output_fname, strerror(errno));
if ( args->n_threads ) hts_set_threads(args->out_fh, args->n_threads);
bcf_hdr_write(args->out_fh, args->hdr_out);
}
}
static void destroy_data(args_t *args)
{
free(args->plugin.name);
if ( args->plugin.destroy ) args->plugin.destroy();
dlclose(args->plugin.handle);
if ( args->hdr_out ) bcf_hdr_destroy(args->hdr_out);
if ( args->nplugin_paths>0 )
{
int i;
for (i=0; i<args->nplugin_paths; i++) free(args->plugin_paths[i]);
free(args->plugin_paths);
}
if ( args->filter )
filter_destroy(args->filter);
if (args->out_fh) hts_close(args->out_fh);
}
static void usage(args_t *args)
{
fprintf(stderr, "\n");
fprintf(stderr, "About: Run user defined plugin\n");
fprintf(stderr, "Usage: bcftools plugin <name> [OPTIONS] <file> [-- PLUGIN_OPTIONS]\n");
fprintf(stderr, " bcftools +name [OPTIONS] <file> [-- PLUGIN_OPTIONS]\n");
fprintf(stderr, "\n");
fprintf(stderr, "VCF input options:\n");
fprintf(stderr, " -e, --exclude <expr> exclude sites for which the expression is true\n");
fprintf(stderr, " -i, --include <expr> select sites for which the expression is true\n");
fprintf(stderr, " -r, --regions <region> restrict to comma-separated list of regions\n");
fprintf(stderr, " -R, --regions-file <file> restrict to regions listed in a file\n");
fprintf(stderr, " -t, --targets <region> similar to -r but streams rather than index-jumps\n");
fprintf(stderr, " -T, --targets-file <file> similar to -R but streams rather than index-jumps\n");
fprintf(stderr, "VCF output options:\n");
fprintf(stderr, " --no-version do not append version and command line to the header\n");
fprintf(stderr, " -o, --output <file> write output to a file [standard output]\n");
fprintf(stderr, " -O, --output-type <type> 'b' compressed BCF; 'u' uncompressed BCF; 'z' compressed VCF; 'v' uncompressed VCF [v]\n");
fprintf(stderr, " --threads <int> number of extra output compression threads [0]\n");
fprintf(stderr, "Plugin options:\n");
fprintf(stderr, " -h, --help list plugin's options\n");
fprintf(stderr, " -l, --list-plugins list available plugins. See BCFTOOLS_PLUGINS environment variable and man page for details\n");
fprintf(stderr, " -v, --verbose print verbose information, -vv increases verbosity\n");
fprintf(stderr, " -V, --version print version string and exit\n");
fprintf(stderr, "\n");
exit(1);
}
static int is_verbose(int argc, char *argv[])
{
int c, verbose = 0, opterr_ori = opterr;
static struct option loptions[] =
{
{"verbose",no_argument,NULL,'v'},
{NULL,0,NULL,0}
};
opterr = 0;
while ((c = getopt_long(argc, argv, "-v",loptions,NULL)) >= 0)
{
switch (c) {
case 'v': verbose++; break;
case 1:
default: break;
}
}
opterr = opterr_ori;
optind = 0;
return verbose;
}
int main_plugin(int argc, char *argv[])
{
int c;
args_t *args = (args_t*) calloc(1,sizeof(args_t));
args->argc = argc; args->argv = argv;
args->output_fname = "-";
args->output_type = FT_VCF;
args->n_threads = 0;
args->record_cmd_line = 1;
args->nplugin_paths = -1;
int regions_is_file = 0, targets_is_file = 0, plist_only = 0, usage_only = 0, version_only = 0;
if ( argc==1 ) usage(args);
char *plugin_name = NULL;
if ( argv[1][0]!='-' )
{
args->verbose = is_verbose(argc, argv);
plugin_name = argv[1];
argc--;
argv++;
load_plugin(args, plugin_name, 1, &args->plugin);
if ( args->plugin.run )
{
int ret = args->plugin.run(argc, argv);
destroy_data(args);
free(args);
return ret;
}
}
static struct option loptions[] =
{
{"version",no_argument,NULL,'V'},
{"verbose",no_argument,NULL,'v'},
{"help",no_argument,NULL,'h'},
{"list-plugins",no_argument,NULL,'l'},
{"output",required_argument,NULL,'o'},
{"output-type",required_argument,NULL,'O'},
{"threads",required_argument,NULL,9},
{"include",required_argument,NULL,'i'},
{"exclude",required_argument,NULL,'e'},
{"regions",required_argument,NULL,'r'},
{"regions-file",required_argument,NULL,'R'},
{"targets",required_argument,NULL,'t'},
{"targets-file",required_argument,NULL,'T'},
{"no-version",no_argument,NULL,8},
{NULL,0,NULL,0}
};
while ((c = getopt_long(argc, argv, "h?o:O:r:R:t:T:li:e:vV",loptions,NULL)) >= 0)
{
switch (c) {
case 'V': version_only = 1; break;
case 'v': args->verbose++; break;
case 'o': args->output_fname = optarg; break;
case 'O':
switch (optarg[0]) {
case 'b': args->output_type = FT_BCF_GZ; break;
case 'u': args->output_type = FT_BCF; break;
case 'z': args->output_type = FT_VCF_GZ; break;
case 'v': args->output_type = FT_VCF; break;
default: error("The output type \"%s\" not recognised\n", optarg);
};
break;
case 'e': args->filter_str = optarg; args->filter_logic |= FLT_EXCLUDE; break;
case 'i': args->filter_str = optarg; args->filter_logic |= FLT_INCLUDE; break;
case 'r': args->regions_list = optarg; break;
case 'R': args->regions_list = optarg; regions_is_file = 1; break;
case 't': args->targets_list = optarg; break;
case 'T': args->targets_list = optarg; targets_is_file = 1; break;
case 'l': plist_only = 1; break;
case 9 : args->n_threads = strtol(optarg, 0, 0); break;
case 8 : args->record_cmd_line = 0; break;
case '?':
case 'h': usage_only = 1; break;
default: error("Unknown argument: %s\n", optarg);
}
}
if ( plist_only ) return list_plugins(args);
if ( usage_only && ! plugin_name ) usage(args);
if ( version_only )
{
const char *bver, *hver;
args->plugin.version(&bver, &hver);
printf("bcftools %s using htslib %s\n", bcftools_version(), hts_version());
printf("plugin at %s using htslib %s\n\n", bver, hver);
return 0;
}
if ( usage_only )
{
if ( args->plugin.usage )
fprintf(stderr,"%s",args->plugin.usage());
else
fprintf(stderr,"Usage: bcftools +%s [General Options] -- [Plugin Options]\n",plugin_name);
return 0;
}
char *fname = NULL;
if ( optind>=argc || argv[optind][0]=='-' )
{
if ( !isatty(fileno((FILE *)stdin)) ) fname = "-"; // reading from stdin
else usage(args);
args->plugin.argc = argc - optind + 1;
args->plugin.argv = argv + optind - 1;
}
else
{
fname = argv[optind];
args->plugin.argc = argc - optind;
args->plugin.argv = argv + optind;
}
optind = 0;
args->files = bcf_sr_init();
if ( args->regions_list )
{
if ( bcf_sr_set_regions(args->files, args->regions_list, regions_is_file)<0 )
error("Failed to read the regions: %s\n", args->regions_list);
}
if ( args->targets_list )
{
if ( bcf_sr_set_targets(args->files, args->targets_list, targets_is_file, 0)<0 )
error("Failed to read the targets: %s\n", args->targets_list);
args->files->collapse |= COLLAPSE_SOME;
}
if ( !bcf_sr_add_reader(args->files, fname) ) error("Failed to open %s: %s\n", fname,bcf_sr_strerror(args->files->errnum));
init_data(args);
while ( bcf_sr_next_line(args->files) )
{
bcf1_t *line = bcf_sr_get_line(args->files,0);
if ( args->filter )
{
int pass = filter_test(args->filter, line, NULL);
if ( args->filter_logic & FLT_EXCLUDE ) pass = pass ? 0 : 1;
if ( !pass ) continue;
}
line = args->plugin.process(line);
if ( line )
{
if ( line->errcode ) error("[E::main_plugin] Unchecked error (%d), exiting\n",line->errcode);
bcf_write1(args->out_fh, args->hdr_out, line);
}
}
destroy_data(args);
bcf_sr_destroy(args->files);
free(args);
return 0;
}
#else /* ENABLE_BCF_PLUGINS */
int main_plugin(int argc, char *argv[])
{
fprintf(stderr, "bcftools plugins are disabled. To use them, you will need to rebuild\n"
"bcftools from the source distribution with plugins enabled.\n");
return 1;
}
#endif /* ENABLE_BCF_PLUGINS */
|