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
|
/* sam_opts.c -- utilities to aid parsing common command line options.
Copyright (C) 2015, 2019 Genome Research Ltd.
Author: James Bonfield <jkb@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 <stdlib.h>
#include <string.h>
#include "sam_opts.h"
/*
* Processes a standard "global" samtools long option.
*
* The 'c' value is the return value from a getopt_long() call. It is checked
* against the lopt[] array to find the corresponding value as this may have
* been reassigned by the individual subcommand.
*
* Having found the entry, the corresponding long form is used to apply the
* option, storing the setting in sam_global_args *ga.
*
* Returns 0 on success,
* -1 on failure.
*/
int parse_sam_global_opt(int c, const char *optarg, const struct option *lopt,
sam_global_args *ga) {
int r = 0;
while (lopt->name) {
if (c != lopt->val) {
lopt++;
continue;
}
if (strcmp(lopt->name, "input-fmt") == 0) {
r = hts_parse_format(&ga->in, optarg);
break;
} else if (strcmp(lopt->name, "input-fmt-option") == 0) {
r = hts_opt_add((hts_opt **)&ga->in.specific, optarg);
break;
} else if (strcmp(lopt->name, "output-fmt") == 0) {
r = hts_parse_format(&ga->out, optarg);
break;
} else if (strcmp(lopt->name, "output-fmt-option") == 0) {
r = hts_opt_add((hts_opt **)&ga->out.specific, optarg);
break;
} else if (strcmp(lopt->name, "reference") == 0) {
char *ref = malloc(10 + strlen(optarg) + 1);
if (!ref) {
fprintf(stderr, "Unable to allocate memory in "
"parse_sam_global_opt.\n");
return -1;
}
sprintf(ref, "reference=%s", optarg);
if (!(ga->reference = strdup(optarg))) {
fprintf(stderr, "Unable to allocate memory in "
"parse_sam_global_opt.\n");
return -1;
}
r = hts_opt_add((hts_opt **)&ga->in.specific, ref);
r |= hts_opt_add((hts_opt **)&ga->out.specific, ref);
free(ref);
break;
} else if (strcmp(lopt->name, "threads") == 0) {
ga->nthreads = atoi(optarg);
break;
} else if (strcmp(lopt->name, "write-index") == 0) {
ga->write_index = 1;
break;
} else if (strcmp(lopt->name, "verbosity") == 0) {
hts_verbose = atoi(optarg);
break;
}
}
if (!lopt->name) {
fprintf(stderr, "Unexpected global option.\n");
return -1;
}
/*
* SAM format with compression enabled implies SAM.bgzf
*/
if (ga->out.format == sam) {
hts_opt *opts = (hts_opt *)ga->out.specific;
while (opts) {
if (opts->opt == HTS_OPT_COMPRESSION_LEVEL)
ga->out.compression = bgzf;
opts = opts->next;
}
}
return r;
}
/*
* Report the usage for global options.
*
* This accepts a string with one character per SAM_OPT_GLOBAL_OPTIONS option
* to determine which options need to be printed and how.
* Each character should be one of:
* '.' No short option has been assigned. Use --long-opt only.
* '-' The long (and short) option has been disabled.
* <c> Otherwise the short option is character <c>.
*/
void sam_global_opt_help(FILE *fp, const char *shortopts) {
int i = 0;
static const struct option lopts[] = {
SAM_OPT_GLOBAL_OPTIONS(0,0,0,0,0,0),
{ NULL, 0, NULL, 0 }
};
for (i = 0; shortopts && shortopts[i] && lopts[i].name; i++) {
if (shortopts[i] == '-')
continue;
if (shortopts[i] == '.')
fprintf(fp, " --");
else
fprintf(fp, " -%c, --", shortopts[i]);
if (strcmp(lopts[i].name, "input-fmt") == 0)
fprintf(fp,"input-fmt FORMAT[,OPT[=VAL]]...\n"
" Specify input format (SAM, BAM, CRAM)\n");
else if (strcmp(lopts[i].name, "input-fmt-option") == 0)
fprintf(fp,"input-fmt-option OPT[=VAL]\n"
" Specify a single input file format option in the form\n"
" of OPTION or OPTION=VALUE\n");
else if (strcmp(lopts[i].name, "output-fmt") == 0)
fprintf(fp,"output-fmt FORMAT[,OPT[=VAL]]...\n"
" Specify output format (SAM, BAM, CRAM)\n");
else if (strcmp(lopts[i].name, "output-fmt-option") == 0)
fprintf(fp,"output-fmt-option OPT[=VAL]\n"
" Specify a single output file format option in the form\n"
" of OPTION or OPTION=VALUE\n");
else if (strcmp(lopts[i].name, "reference") == 0)
fprintf(fp,"reference FILE\n"
" Reference sequence FASTA FILE [null]\n");
else if (strcmp(lopts[i].name, "threads") == 0)
fprintf(fp,"threads INT\n"
" Number of additional threads to use [0]\n");
else if (strcmp(lopts[i].name, "write-index") == 0)
fprintf(fp,"write-index\n"
" Automatically index the output files [off]\n");
else if (strcmp(lopts[i].name, "verbosity") == 0)
fprintf(fp,"verbosity INT\n"
" Set level of verbosity\n");
}
}
void sam_global_args_init(sam_global_args *ga) {
if (!ga)
return;
memset(ga, 0, sizeof(*ga));
}
void sam_global_args_free(sam_global_args *ga) {
if (ga->in.specific)
hts_opt_free(ga->in.specific);
if (ga->out.specific)
hts_opt_free(ga->out.specific);
if (ga->reference)
free(ga->reference);
}
|