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
|
#include "bcftools.pysam.h"
/* version.c -- report version numbers for plugins.
Copyright (C) 2014-2024 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 <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <strings.h>
#include <errno.h>
#include <htslib/hts.h>
#include "bcftools.h"
#include "version.h"
void version(const char **bcftools_version, const char **htslib_version)
{
*bcftools_version = BCFTOOLS_VERSION;
*htslib_version = hts_version();
}
void error(const char *format, ...)
{
va_list ap;
va_start(ap, format);
vfprintf(bcftools_stderr, format, ap);
va_end(ap);
bcftools_exit(-1);
}
void error_errno(const char *format, ...)
{
va_list ap;
int e = errno;
va_start(ap, format);
vfprintf(bcftools_stderr, format, ap);
va_end(ap);
if (e) {
fprintf(bcftools_stderr, ": %s\n", strerror(e));
} else {
fprintf(bcftools_stderr, "\n");
}
bcftools_exit(-1);
}
const char *hts_bcf_wmode(int file_type)
{
if ( file_type == FT_BCF ) return "wbu"; // uncompressed BCF
if ( file_type & FT_BCF ) return "wb"; // compressed BCF
if ( file_type & FT_GZ ) return "wz"; // compressed VCF
return "w"; // uncompressed VCF
}
const char *hts_bcf_wmode2(int file_type, const char *fname)
{
if ( !fname ) return hts_bcf_wmode(file_type);
const char *end = fname ? strstr(fname, HTS_IDX_DELIM) : NULL;
if ( !end ) end = fname ? fname + strlen(fname) : fname;
int len = end - fname;
if ( len >= 4 && !strncasecmp(".bcf",fname+len-4,4) ) return hts_bcf_wmode(FT_BCF|FT_GZ);
if ( len >= 4 && !strncasecmp(".vcf",fname+len-4,4) ) return hts_bcf_wmode(FT_VCF);
if ( len >= 7 && !strncasecmp(".vcf.gz",fname+len-7,7) ) return hts_bcf_wmode(FT_VCF|FT_GZ);
if ( len >= 8 && !strncasecmp(".vcf.bgz",fname+len-8,8) ) return hts_bcf_wmode(FT_VCF|FT_GZ);
return hts_bcf_wmode(file_type);
}
void set_wmode(char dst[8], int file_type, const char *fname, int clevel)
{
const char *ret = NULL;
const char *end = fname ? strstr(fname, HTS_IDX_DELIM) : NULL;
if ( !end ) end = fname ? fname + strlen(fname) : fname;
int len = end - fname;
if ( len >= 4 && !strncasecmp(".bcf",fname+len-4,4) )
ret = hts_bcf_wmode(file_type & FT_BCF ? file_type : FT_BCF|FT_GZ);
else if ( len >= 4 && !strncasecmp(".vcf",fname+len-4,4) ) ret = hts_bcf_wmode(FT_VCF);
else if ( len >= 7 && !strncasecmp(".vcf.gz",fname+len-7,7) ) ret = hts_bcf_wmode(FT_VCF|FT_GZ);
else if ( len >= 8 && !strncasecmp(".vcf.bgz",fname+len-8,8) ) ret = hts_bcf_wmode(FT_VCF|FT_GZ);
else ret = hts_bcf_wmode(file_type);
if ( clevel>=0 && clevel<=9 )
{
if ( strchr(ret,'v') || strchr(ret,'u') ) error("Error: compression level (%d) cannot be set on uncompressed streams (%s)\n",clevel,fname);
len = strlen(ret);
if ( len>6 ) error("Fixme: %s\n", ret);
sprintf(dst, "%s%d", ret, clevel);
}
else
strcpy(dst, ret);
}
int parse_overlap_option(const char *arg)
{
if ( strcasecmp(arg, "pos") == 0 || strcmp(arg, "0") == 0 ) return 0;
else if ( strcasecmp(arg, "record") == 0 || strcmp(arg, "1") == 0 ) return 1;
else if ( strcasecmp(arg, "variant") == 0 || strcmp(arg, "2") == 0 ) return 2;
else return -1;
}
// Used to set args->write_index in CLI.
// It will be true if set correctly.
// Note due to HTS_FMT_CSI being zero we have to use an additional bit.
int write_index_parse(char *arg) {
int fmt = HTS_FMT_CSI;
if (arg) {
if (strcmp(arg, "csi") == 0 || strcmp(arg, "=csi") == 0)
fmt = HTS_FMT_CSI;
else if (strcmp(arg, "tbi") == 0 || strcmp(arg, "=tbi") == 0)
fmt = HTS_FMT_TBI;
else
return 0;
}
return 128 | fmt;
}
// See also samtools/sam_utils.c auto_index()
int init_index2(htsFile *fh, bcf_hdr_t *hdr, const char *fname,
char **idx_fname, int idx_fmt) {
// Nothing to do == success. This simplifies the main code simpler.
if (!idx_fmt)
return 0;
int min_shift;
char *idx_suffix;
if (idx_fmt && (idx_fmt&127) == HTS_FMT_TBI && fh->format.format == vcf) {
min_shift = 0; // TBI
idx_suffix = "tbi";
} else {
min_shift = 14; // CSI
idx_suffix = "csi";
}
if ( !fname || !*fname || !strcmp(fname, "-") ) return -1;
char *delim = strstr(fname, HTS_IDX_DELIM);
if (delim) {
delim += strlen(HTS_IDX_DELIM);
*idx_fname = strdup(delim);
if ( !*idx_fname ) return -1;
size_t l = strlen(*idx_fname);
if ( l >= 4 && strcmp(*idx_fname + l - 4, ".tbi")==0 ) min_shift = 0;
} else {
if ( !(*idx_fname = malloc(strlen(fname)+6)) ) return -1;
sprintf(*idx_fname, "%s.%s", fname, idx_suffix);
}
if ( bcf_idx_init(fh, hdr, min_shift, *idx_fname) < 0 ) return -1;
return 0;
}
int init_index(htsFile *fh, bcf_hdr_t *hdr, const char *fname, char **idx_fname)
{
return init_index2(fh,hdr, fname, idx_fname, HTS_FMT_CSI);
}
|