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
|
/* The MIT License
Copyright (C) 2020 Giulio Genovese
Author: Giulio Genovese <giulio.genovese@gmail.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 <unistd.h>
#include <ctype.h>
#include <htslib/synced_bcf_reader.h>
#include "bcftools.h"
#include "htslib/khash_str2int.h"
#include "regidx.h"
#define FLT_INCLUDE 1
#define FLT_EXCLUDE 2
typedef struct
{
htsFile *fh; // output file handle
char *fname; // output file name
}
subset_t;
typedef struct
{
char *filter_str;
int filter_logic; // one of FLT_INCLUDE/FLT_EXCLUDE (-i or -e)
void *hash;
regidx_t *reg_idx;
regitr_t *reg_itr;
int argc, region_is_file, target_is_file, nsites, chunk_cnt, rec_cnt, scatter_is_file, output_type, n_threads;
char **argv, *region, *target, *scatter, *fname, *prefix, *extra, *output_dir;
bcf_srs_t *sr;
kstring_t str;
subset_t *sets;
int nsets, msets;
int record_cmd_line;
char **hts_opts;
int nhts_opts;
}
args_t;
const char *about(void)
{
return "Scatter VCF by chunks or regions, creating multiple VCFs.\n";
}
static const char *usage_text(void)
{
return
"\n"
"About: Split VCF by chunks or regions, creating multiple VCFs.\n"
"\n"
"Usage: bcftools +scatter [Options]\n"
"Plugin options:\n"
" -e, --exclude <expr> exclude sites for which the expression is true\n"
" -i, --include <expr> select sites for which the expression is true\n"
" --no-version do not append version and command line to the header\n"
" -o, --output DIR write output to the directory DIR\n"
" -O, --output-type b|u|z|v b: compressed BCF, u: uncompressed BCF, z: compressed VCF, v: uncompressed VCF [v]\n"
" --threads <int> use multithreading with <int> worker threads [0]\n"
" -r, --regions <region> restrict to comma-separated list of regions\n"
" -R, --regions-file <file> restrict to regions listed in a file\n"
" -t, --targets [^]<region> similar to -r but streams rather than index-jumps. Exclude regions with \"^\" prefix\n"
" -T, --targets-file [^]<file> similar to -R but streams rather than index-jumps. Exclude regions with \"^\" prefix\n"
" -n, --nsites-per-chunk <int> keep N sites for each chunk\n"
" -s, --scatter <region> comma-separated list of regions defining variant windows for each output VCF\n"
" -S, --scatter-file <file> regions listed in a file with an optional second column used to name each output VCF.\n"
" Variants from multiple regions can be assigned to the same output VCF.\n"
" -x, --extra <string> output records not overlapping listed regions in separate file\n"
" -p, --prefix <string> prepend string to output VCF names\n"
" --hts-opts <list> low-level options to pass to HTSlib, e.g. block_size=32768\n"
"\n"
"Examples:\n"
" # Scatter a VCF file by shards with 10000 variants each\n"
" bcftools +scatter input.bcf -Ob -o dir -n 10000 -p part-\n"
"\n"
" # Scatter a VCF file by chromosomes\n"
" bcftools +scatter input.bcf -Ob -o dir -s chr1,chr2,chr3,<...>,chr22,chrX -x other\n"
"\n";
}
void mkdir_p(const char *fmt, ...);
// most of this code was inspired by Petr Danecek's code in regidx.c
#define MAX_COOR_0 REGIDX_MAX // CSI and hts_itr_query limit, 0-based
int regidx_parse_reg_name(const char *line, char **chr_beg, char **chr_end, uint32_t *beg, uint32_t *end, void *payload, void *usr)
{
char *ss = (char*) line;
while ( *ss && isspace(*ss) ) ss++;
if ( !*ss ) return -1; // skip blank lines
if ( *ss=='#' ) return -1; // skip comments
char *se = ss;
while ( *se && *se!=':' && !isspace(*se) ) se++;
*chr_beg = ss;
*chr_end = se-1;
if ( *se != ':' )
{
*beg = 0;
*end = MAX_COOR_0;
}
else
{
ss = se+1;
*beg = strtod(ss, &se);
if ( ss==se ) { fprintf(stderr,"Could not parse reg line: %s\n", line); return -2; }
if ( *beg==0 ) { fprintf(stderr,"Could not parse reg line, expected 1-based coordinate: %s\n", line); return -2; }
(*beg)--;
if ( !se[0] || isspace(se[0])) {
*end = *beg;
} else if ( se[0] == '-' && (!se[1] || isspace(se[1])) ) {
*end = MAX_COOR_0;
se++;
} else {
ss = se+1;
*end = strtod(ss, &se);
if ( ss==se ) *end = *beg;
else if ( *end==0 ) { fprintf(stderr,"Could not parse reg line, expected 1-based coordinate: %s\n", line); return -2; }
else (*end)--;
}
}
ss = se;
while ( *ss && isspace(*ss) ) ss++;
if ( !ss[0] ) ss = (char *)line;
int *idx = (int *)payload;
args_t *args = (args_t *)usr;
int ret = khash_str2int_get(args->hash, ss, idx);
if (ret < 0) {
hts_expand0(subset_t, args->nsets + 1, args->msets, args->sets);
args->sets[args->nsets].fname = strdup(ss);
*idx = khash_str2int_inc(args->hash, args->sets[args->nsets].fname);
args->nsets++;
}
return 0;
}
static void open_set(subset_t *set, args_t *args)
{
int j;
args->str.l = 0;
kputs(args->output_dir, &args->str);
if ( args->str.s[args->str.l-1] != '/' ) kputc('/', &args->str);
int k, l = args->str.l;
if (args->prefix) kputs(args->prefix, &args->str);
kputs(set->fname, &args->str);
for (k=l; k<args->str.l; k++) if ( isspace(args->str.s[k]) ) args->str.s[k] = '_';
if ( args->output_type & FT_BCF ) kputs(".bcf", &args->str);
else if ( args->output_type & FT_GZ ) kputs(".vcf.gz", &args->str);
else kputs(".vcf", &args->str);
set->fh = hts_open(args->str.s, hts_bcf_wmode(args->output_type));
if ( set->fh == NULL ) error("[%s] Error: cannot write to \"%s\": %s\n", __func__, args->str.s, strerror(errno));
if ( args->n_threads > 0)
hts_set_opt(set->fh, HTS_OPT_THREAD_POOL, args->sr->p);
if ( args->hts_opts )
{
hts_opt *opts = NULL;
for (j=0; j<args->nhts_opts; j++)
if ( hts_opt_add(&opts, args->hts_opts[j]) ) error("Could not set the HTS option \"%s\"\n", args->hts_opts[j]);
if ( hts_opt_apply(set->fh, opts) ) error("Could not apply the HTS options\n");
hts_opt_free(opts);
}
bcf_hdr_t *hdr = bcf_sr_get_header(args->sr, 0);
if ( bcf_hdr_write(set->fh, hdr)!=0 ) error("[%s] Error: cannot write the header to %s\n", __func__, args->str.s);
if (args->record_cmd_line) bcf_hdr_append_version(hdr, args->argc, args->argv, "bcftools_plugin");
}
static void init_data(args_t *args)
{
args->sr = bcf_sr_init();
if ( args->region )
{
args->sr->require_index = 1;
if ( bcf_sr_set_regions(args->sr, args->region, args->region_is_file)<0 )
error("Failed to read the regions: %s\n", args->region);
}
if ( args->target && bcf_sr_set_targets(args->sr, args->target, args->target_is_file, 0)<0 )
error("Failed to read the targets: %s\n", args->target);
if ( bcf_sr_set_threads(args->sr, args->n_threads)<0 ) error("Failed to create threads\n");
if ( !bcf_sr_add_reader(args->sr, args->fname) ) error("Error: %s\n", bcf_sr_strerror(args->sr->errnum));
mkdir_p("%s/", args->output_dir);
if (args->nsites) {
args->nsets = 1;
hts_expand0(subset_t, args->nsets, args->msets, args->sets);
} else {
args->hash = khash_str2int_init();
if (args->scatter_is_file) {
args->reg_idx = regidx_init(args->scatter, regidx_parse_reg_name, NULL, sizeof(int), args);
if ( !args->reg_idx ) exit(-1);
} else {
char *ss;
for (ss = args->scatter; *ss; ss++) if (*ss == ',') *ss = '\n';
args->reg_idx = regidx_init_string(args->scatter, regidx_parse_reg_name, NULL, sizeof(int), args);
for (ss = args->scatter; *ss; ss++) if (*ss == '\n') *ss = ',';
}
args->reg_itr = regitr_init(args->reg_idx);
if (args->extra) {
hts_expand0(subset_t, args->nsets + 1, args->msets, args->sets);
args->sets[args->nsets].fname = strdup(args->extra);
args->nsets++;
}
int i;
for (i=0; i<args->nsets; i++) open_set(&args->sets[i], args);
}
}
static void destroy_data(args_t *args)
{
if (args->scatter) {
khash_str2int_destroy(args->hash);
regidx_destroy(args->reg_idx);
regitr_destroy(args->reg_itr);
}
free(args->str.s);
int i;
for (i=0; i<args->nsets; i++)
{
subset_t *set = &args->sets[i];
if (set->fname) {
if ( hts_close(set->fh)!=0 ) error("Error: close failed .. %s\n", set->fname);
free(set->fname);
}
}
for (i=0; i<args->nhts_opts; i++) free(args->hts_opts[i]);
free(args->hts_opts);
free(args->sets);
bcf_sr_destroy(args->sr);
free(args);
}
static void process(args_t *args)
{
bcf_hdr_t *hdr = bcf_sr_get_header(args->sr, 0);
bcf1_t *rec = bcf_sr_get_line(args->sr, 0);
subset_t *set;
if (args->nsites) {
subset_t *set = &args->sets[0];
if (!args->rec_cnt) {
args->str.l = 0;
kputw(args->chunk_cnt, &args->str);
set->fname = strdup(args->str.s);
open_set(set, args);
args->rec_cnt = 0;
}
if ( bcf_write(set->fh, hdr, rec)!=0 ) error("[%s] Error: failed to write the record\n", __func__);
args->rec_cnt++;
if (args->rec_cnt == args->nsites) {
args->rec_cnt = 0;
if ( hts_close(set->fh)!=0 ) error("Error: close failed .. %s\n", set->fname);
free(set->fname);
set->fname = NULL;
args->chunk_cnt++;
}
} else {
if ( regidx_overlap(args->reg_idx, bcf_hdr_id2name(hdr, rec->rid), rec->pos, rec->pos + rec->rlen-1, args->reg_itr) ) {
while (regitr_overlap(args->reg_itr)) {
int idx = regitr_payload(args->reg_itr, int);
set = &args->sets[idx];
if ( bcf_write(set->fh, hdr, rec)!=0 ) error("[%s] Error: failed to write the record\n", __func__);
}
} else if (args->extra) {
set = &args->sets[args->nsets-1];
if ( bcf_write(set->fh, hdr, rec)!=0 ) error("[%s] Error: failed to write the record\n", __func__);
}
}
}
int run(int argc, char **argv)
{
args_t *args = (args_t*) calloc(1, sizeof(args_t));
args->argc = argc; args->argv = argv;
args->output_type = FT_VCF;
args->record_cmd_line = 1;
static struct option loptions[] =
{
{"exclude",required_argument,NULL,'e'},
{"include",required_argument,NULL,'i'},
{"no-version",no_argument,NULL,1},
{"output",required_argument,NULL,'o'},
{"output-type",required_argument,NULL,'O'},
{"threads",required_argument,NULL,2},
{"regions",required_argument,NULL,'r'},
{"regions-file",required_argument,NULL,'R'},
{"targets", required_argument, NULL, 't'},
{"targets-file", required_argument, NULL, 'T'},
{"nsites-per-chunk",required_argument,NULL,'n'},
{"scatter",required_argument,NULL,'s'},
{"scatter-file",required_argument,NULL,'S'},
{"extra",required_argument,NULL,'x'},
{"prefix",required_argument,NULL,'p'},
{"hts-opts",required_argument,NULL,3},
{NULL,0,NULL,0}
};
int c;
char *tmp;
while ((c = getopt_long(argc, argv, "e:i:o:O:r:R:t:T:n:s:S:x:p:h?", loptions, NULL)) >= 0)
{
switch (c)
{
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 1 : args->record_cmd_line = 0; break;
case 'o': args->output_dir = 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 2 : args->n_threads = strtol(optarg, 0, 0); break;
case 'r': args->region = optarg; break;
case 'R': args->region = optarg; args->region_is_file = 1; break;
case 't': args->target = optarg; break;
case 'T': args->target = optarg; args->target_is_file = 1; break;
case 'n':
args->nsites = strtod(optarg, &tmp);
if ( tmp==optarg || *tmp ) error("Could not parse: --nsites-per-chunk %s\n", optarg);
if ( args->nsites <= 0 ) error("Positive integer required: --nsites-per-chunk %s\n", optarg);
break;
case 's': args->scatter = optarg; break;
case 'S': args->scatter = optarg; args->scatter_is_file = 1; break;
case 'x': args->extra = optarg; break;
case 'p': args->prefix = optarg; break;
case 3 : args->hts_opts = hts_readlist(optarg, 0, &args->nhts_opts); break;
case 'h':
case '?':
default: error("%s", usage_text()); break;
}
}
if ( optind==argc )
{
if ( !isatty(fileno((FILE *)stdin)) ) args->fname = "-"; // reading from stdin
else { error("%s", usage_text()); }
}
else if ( optind+1!=argc ) error("%s", usage_text());
else args->fname = argv[optind];
if ( !args->output_dir ) error("Missing the -o option\n");
if ( args->filter_logic == (FLT_EXCLUDE|FLT_INCLUDE) ) error("Only one of -i or -e can be given\n");
if ( !args->nsites && !args->scatter ) error("Missing either the -n or one of the -s or -S options\n");
if ( args->nsites && args->scatter ) error("Only one of -n or either -s or -S can be given\n");
if ( args->nsites && args->extra ) error("Cannot use -x together with -n\n");
init_data(args);
while ( bcf_sr_next_line(args->sr) ) process(args);
destroy_data(args);
return 0;
}
|