pysam-developers / pysam

Pysam is a Python package for reading, manipulating, and writing genomics data such as SAM/BAM/CRAM and VCF/BCF files. It's a lightweight wrapper of the HTSlib API, the same one that powers samtools, bcftools, and tabix.
https://pysam.readthedocs.io/en/latest/
MIT License
773 stars 274 forks source link

CIGAR ops names in docs don't match the ones in the code #1255

Open notestaff opened 8 months ago

notestaff commented 8 months ago

The enum constants representing CIGAR operations are documented are documented as having names like BAM_CMATCH, BAMCINS etc. But the actual constants in the pysam module are named pysam.CMATCH, pysam.CINS etc, without the BAM prefix.