Changeset 3363
- Timestamp:
- Nov 25, 2014, 11:42:54 AM (8 years ago)
- Location:
- trunk/yat/omic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/omic/BamFile.h
r3357 r3363 86 86 87 87 #ifndef YAT_HAVE_HTSLIB 88 /// Old samtools 0.1.xx had a struct samfile_t, which in htslib has 89 /// changed to samFile 88 /** 89 \brief only defined when compiling against old bamlib 90 91 Old samtools 0.1.xx had a struct samfile_t, which in htslib has 92 changed to samFile 93 */ 90 94 typedef samfile_t samFile; 91 95 #endif … … 122 126 libbam, \c bam_index_t. 123 127 124 \see index(void) 128 \since New in yat 0.13 129 130 \see function index(void) const 125 131 */ 126 132 #if YAT_HAVE_HTSLIB … … 183 189 \brief read the next BamRead 184 190 191 This function is used in BamReadIterator. Typically it is more 192 convenient to read bams via a BamReadIterator than through this 193 function directly. 194 185 195 \return true on success 186 196 */ … … 252 262 \param compression a number [0,9] indicating level of 253 263 compression. 9 gives highest compression and 0 indicates no 254 compression (suitable for piping between applications) 264 compression (suitable for piping between applications). 255 265 256 266 \since yat 0.12 -
trunk/yat/omic/BamHeader.h
r3352 r3363 82 82 \brief inverse of target_name(size_t) 83 83 84 \note If \a name does not exist, behaviour is undefined. 84 If compiled against libbam and \a name does not exist, 85 behavious is undefined. If compiled against htslib, a 86 utility::runtime_error is thrown. 85 87 86 88 \since new in yat 0.11 … … 89 91 90 92 /** 91 Number of chromosomes93 \return Number of chromosomes 92 94 */ 93 95 int32_t n_targets(void) const; -
trunk/yat/omic/BamReadFilter.h
r3361 r3363 28 28 #include <functional> 29 29 30 // this flag was defined in bam.h but has disappeared in htslib 30 31 #ifndef BAM_DEF_MASK 31 32 #define BAM_DEF_MASK (BAM_FUNMAP | BAM_FSECONDARY | BAM_FQCFAIL | BAM_FDUP)
Note: See TracChangeset
for help on using the changeset viewer.