Skip to content Navigation Menu Toggle navigation Sign in Appearance settings PlatformAI CODE CREATIONGitHub CopilotWrite better code with AIGitHub Copilot appDirect agents from issue to mergeMCP RegistryNewIntegrate external toolsDEVELOPER WORKFLOWSActionsAutomate any workflowCodespacesInstant dev environmentsIssuesPlan and track workCode ReviewManage code changesAPPLICATION SECURITYGitHub Advanced SecurityFind and fix vulnerabilitiesCode securitySecure your code as you buildSecret protectionStop leaks before they startEXPLOREWhy GitHubDocumentationBlogChangelogMarketplaceView all featuresSolutionsBY COMPANY SIZEEnterprisesSmall and medium teamsStartupsNonprofitsBY USE CASEApp ModernizationDevSecOpsDevOpsCI/CDView all use casesBY INDUSTRYHealthcareFinancial servicesManufacturingGovernmentView all industriesView all solutionsResourcesEXPLORE BY TOPICAISoftware DevelopmentDevOpsSecurityView all topicsEXPLORE BY TYPECustomer storiesEvents & webinarsEbooks & reportsBusiness insightsGitHub SkillsSUPPORT & SERVICESDocumentationCustomer supportCommunity forumTrust centerPartnersView all resourcesOpen SourceCOMMUNITYGitHub SponsorsFund open source developersPROGRAMSSecurity LabMaintainer CommunityAcceleratorGitHub StarsArchive ProgramREPOSITORIESTopicsTrendingCollectionsEnterpriseENTERPRISE SOLUTIONSEnterprise platformAI-powered developer platformAVAILABLE ADD-ONSGitHub Advanced SecurityEnterprise-grade security featuresCopilot for BusinessEnterprise-grade AI featuresPremium SupportEnterprise-grade 24/7 supportPricing Search or jump to... Search code, repositories, users, issues, pull requests... Search Clear Search syntax tips Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Saved searches Use saved searches to filter your results more quickly Name Query To see all available qualifiers, see our documentation. Sign in Sign up Appearance settings Resetting focus You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert {{ message }} Uh oh! There was an error while loading. Please reload this page. samtools / samtools Public Notifications You must be signed in to change notification settings Fork 612 Star 1.9k Code Issues 175 Pull requests 20 Actions Projects Wiki Security and quality 2 Insights Additional navigation options Code Issues Pull requests Actions Projects Wiki Security and quality Insights FilesExpand file tree developBreadcrumbssamtools/sam_utils.cCopy pathBlameMore file actionsBlameMore file actions Latest commit HistoryHistoryHistory193 lines (158 loc) · 5.72 KB developBreadcrumbssamtools/sam_utils.cCopy pathTopFile metadata and controlsCodeBlame193 lines (158 loc) · 5.72 KBRawCopy raw fileDownload raw fileOpen symbols panelEdit and raw actions123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193/* sam_utils.c -- various utilities internal to samtools. Copyright (C) 2014-2016, 2018, 2019, 2023 Genome Research Ltd. Author: John Marshall <jm18@sanger.ac.uk> Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALLTHE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISINGFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHERDEALINGS IN THE SOFTWARE. */ #include <config.h>#include <stdlib.h> #include <stdio.h>#include <stdarg.h>#include <string.h>#include <errno.h> #include "sam_utils.h" static htsFile *samtools_stdout = NULL; void autoflush_if_stdout(htsFile *fp, const char *fname) { if (fname == NULL || strcmp(fname, "-") == 0) samtools_stdout = fp;} void release_autoflush(htsFile *fp) { if (samtools_stdout == fp) samtools_stdout = NULL;} static void HTS_FORMAT(HTS_PRINTF_FMT, 2, 0)vprint_error_core(const char *subcommand, const char *format, va_list args, const char *extra){ fflush(stdout); if (samtools_stdout) hts_flush(samtools_stdout); if (subcommand && *subcommand) fprintf(stderr, "samtools %s: ", subcommand); else fprintf(stderr, "samtools: "); vfprintf(stderr, format, args); if (extra) fprintf(stderr, ": %s\n", extra); else fprintf(stderr, "\n"); fflush(stderr);} void print_error(const char *subcommand, const char *format, ...){ va_list args; va_start(args, format); vprint_error_core(subcommand, format, args, NULL); va_end(args);} void print_error_errno(const char *subcommand, const char *format, ...){ int err = errno; va_list args; va_start(args, format); vprint_error_core(subcommand, format, args, err? strerror(err) : NULL); va_end(args);} void check_sam_close(const char *subcmd, samFile *fp, const char *fname, const char *null_fname, int *retp){ release_autoflush(fp); int r = sam_close(fp); if (r >= 0) return; // TODO Need error infrastructure so we can print a message instead of r if (fname) print_error(subcmd, "error closing \"%s\": %d", fname, r); else print_error(subcmd, "error closing %s: %d", null_fname, r); *retp = EXIT_FAILURE;} /* Pick an index suffix based on the output file descriptor type. */static char *idx_suffix(htsFile *fp) { switch (fp->format.format) { case sam: case bam: // Tough cheese if you wanted bai! // New feature => mandatory new index too, for simplicity of CLI. return "csi"; case cram: return "crai"; default: return NULL; }} /* * Utility function to add an index to a file we've opened for write. * NB: Call this after writing the header and before writing sequences. * * The returned index filename should be freed by the caller, but only * after sam_idx_save has been called. * * Returns index filename on success, * NULL on failure. */char *auto_index(htsFile *fp, const char *fn, bam_hdr_t *header) { char *fn_idx; int min_shift = 14; /* CSI */ if (!fn || !*fn || strcmp(fn, "-") == 0) return NULL; char *delim = strstr(fn, HTS_IDX_DELIM); if (delim != NULL) { delim += strlen(HTS_IDX_DELIM); fn_idx = strdup(delim); if (!fn_idx) return NULL; size_t l = strlen(fn_idx); if (l >= 4 && strcmp(fn_idx + l - 4, ".bai") == 0) min_shift = 0; } else { char *suffix = idx_suffix(fp); if (!suffix) return NULL; fn_idx = malloc(strlen(fn)+6); if (!fn_idx) return NULL; sprintf(fn_idx, "%s.%s", fn, suffix); } if (sam_idx_init(fp, header, min_shift, fn_idx) < 0) { print_error_errno("auto_index", "failed to open index \"%s\" for writing", fn_idx); free(fn_idx); return NULL; } return fn_idx;} /// parse_aux_list - parses given string for aux tags which are ',' separated/** @param h - pointer to a SET holding aux tags * @param optarg - string having the ',' separated aux tags * @param msgheader - string to be used during error output as a headerreturns -1 on failure and 0 on successmoved from sam_view.c to here for common usage at different source files*/int parse_aux_list(auxhash_t *h, char *optarg, const char *msgheader){ if (!*h) *h = kh_init(aux_exists); while (strlen(optarg) >= 2) { int x = optarg[0]<<8 | optarg[1]; int ret = 0; kh_put(aux_exists, *h, x, &ret); if (ret < 0) { kh_destroy(aux_exists, *h); *h = NULL; return -1; } optarg += 2; if (*optarg == ',') // allow white-space too for easy `cat file`? optarg++; else if (*optarg != 0) break; } if (strlen(optarg) != 0) { fprintf(stderr, "%s: Error parsing option, " "auxiliary tags should be exactly two characters long.\n", msgheader ? msgheader : ""); kh_destroy(aux_exists, *h); *h = NULL; return -1; } return 0;} You can’t perform that action at this time.