https://github.com/pysam-developers/pysam
Revision cdc0ed12fbe2d7633b8fa47534ab2c2547f66b84 authored by Nils Homer on 20 October 2023, 10:12:28 UTC, committed by GitHub on 20 October 2023, 10:12:28 UTC
Add omitted tags to KNOWN_HEADER_FIELDS and VALID_HEADER_ORDER, so that
AlignmentHeader.from_dict()/to_dict() will preserve all header field tags
defined in the SAM specification. Addresses #1237.

Exercise TP:linear in some header tests.

Co-authored-by: John Marshall <jmarshall@hey.com>
1 parent 98a37ad
Raw File
Tip revision: cdc0ed12fbe2d7633b8fa47534ab2c2547f66b84 authored by Nils Homer on 20 October 2023, 10:12:28 UTC
Add missing header tags as per the spec (PR #1238)
Tip revision: cdc0ed1
bam_plbuf.h
/*  bam_plbuf.h -- plbuf routines (declarations copied from bam.h).

    Copyright (C) 2008, 2013, 2021 Genome Research Ltd.

    Author: Heng Li <lh3@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.  */

#ifndef BAM_PLBUF_H
#define BAM_PLBUF_H

#include <htslib/sam.h>

#ifndef BAM_PILEUP_F_DEFINED
#define BAM_PILEUP_F_DEFINED
typedef int (*bam_pileup_f)(uint32_t tid, hts_pos_t pos, int n, const bam_pileup1_t *pl, void *data);
#endif //BAM_PILEUP_F_DEFINED

typedef struct {
    bam_plp_t iter;
    bam_pileup_f func;
    void *data;
} bam_plbuf_t;

#ifdef __cplusplus
extern "C" {
#endif
/* Exported from bam_plbuf.c */
void bam_plbuf_reset(bam_plbuf_t *buf);

bam_plbuf_t *bam_plbuf_init(bam_pileup_f func, void *data);

void bam_plbuf_destroy(bam_plbuf_t *buf);

int bam_plbuf_push(const bam1_t *b, bam_plbuf_t *buf);

/* Exported from bam_plcmd.c */
int pileup_seq(FILE *fp, const bam_pileup1_t *p, hts_pos_t pos,
               hts_pos_t ref_len, const char *ref, kstring_t *ks,
               int rev_del, int no_ins, int no_ins_mods,
               int no_del, int no_ends);
#ifdef __cplusplus
}
#endif

#endif // BAM_PLBUF_H
back to top