Construct from existing pointer
Add a single line to an existing header
add multiple \n-terminated full SAM header records, eg "@SQ\tSN:foo\tLN:100" (single line or last of multiple does not require terminal \n)
Copy a SAMHeader
Return a complete line of formatted text for a given type and ID, or if no ID, first line matching type.
number of records (lines) of type e.g. SQ, RG, etc.
'in' membership operator. usage: RecordType.SQ in hdr; => <bool>
For position-based lookups of key, e.g. a sample-name lookup in Pysam is ["RG"][0]["SM"] , while in dhtslib: [RecordType.RG, 0, "SN"]
reference contig name to integer id
length of specific reference sequence by number (tid)
reference contig name to integer id
/ //// int sam_hdr_find_tag_id(sam_hdr_t *h, const char *type, const char *ID_key, const char *ID_value, const char *key, kstring_t *ks); Return the value associated with a key for a header line identified by position
number of reference sequences; from bam_hdr_t
lengths of the reference sequences
names of the reference sequences
rc bam_hdr_t * wrapper
Example
import std; auto h = sam_hdr_init(); auto hdr = SAMHeader(h); assert(!(RecordType.RG in hdr)); //sam_hdr_add_line(h, RecordType.RG.ptr, "ID".ptr, "001".ptr, "SM".ptr, "sample1".ptr, null); hdr.addLine(RecordType.RG, "ID", "001", "SM", "sample1"); assert(RecordType.RG in hdr); auto line = hdr.lineById(RecordType.RG, "ID", "001"); assert(line == "@RG ID:001 SM:sample1"); auto val = hdr.valueByPos(RecordType.RG, 0, "SM"); assert(val == "sample1"); assert(hdr[RecordType.RG, 0, "SM"] == "sample1"); assert(hdr[RecordType.RG, 0, "XX"] == "");
SAMHeader encapsulates sam_hdr_t* and provides convenience wrappers to manipulate the header metadata/records.