Created
November 27, 2020 15:26
-
-
Save ATpoint/f6e43c8ae604ea4d2e680b4678d98ee4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metaBigBam.c:485:12: warning: 'cigar_tab' is deprecated: Use bam_cigar_table[] instead [-Wdeprecated-declarations] | |
if (h->cigar_tab == 0) | |
^ | |
/usr/local/include/htslib/sam.h:75:29: note: 'cigar_tab' has been explicitly marked deprecated here | |
const int8_t *cigar_tab HTS_DEPRECATED("Use bam_cigar_table[] instead"); | |
^ | |
/usr/local/include/htslib/hts_defs.h:75:49: note: expanded from macro 'HTS_DEPRECATED' | |
#define HTS_DEPRECATED(message) __attribute__ ((__deprecated__ (message))) | |
^ | |
metaBigBam.c:487:5: warning: 'cigar_tab' is deprecated: Use bam_cigar_table[] instead [-Wdeprecated-declarations] | |
h->cigar_tab = (int8_t*)calloc(128, sizeof(int8_t)); | |
^ | |
/usr/local/include/htslib/sam.h:75:29: note: 'cigar_tab' has been explicitly marked deprecated here | |
const int8_t *cigar_tab HTS_DEPRECATED("Use bam_cigar_table[] instead"); | |
^ | |
/usr/local/include/htslib/hts_defs.h:75:49: note: expanded from macro 'HTS_DEPRECATED' | |
#define HTS_DEPRECATED(message) __attribute__ ((__deprecated__ (message))) | |
^ | |
metaBigBam.c:489:9: warning: 'cigar_tab' is deprecated: Use bam_cigar_table[] instead [-Wdeprecated-declarations] | |
h->cigar_tab[(int)BAM_CIGAR_STR[i]] = i; | |
^ | |
/usr/local/include/htslib/sam.h:75:29: note: 'cigar_tab' has been explicitly marked deprecated here | |
const int8_t *cigar_tab HTS_DEPRECATED("Use bam_cigar_table[] instead"); | |
^ | |
/usr/local/include/htslib/hts_defs.h:75:49: note: expanded from macro 'HTS_DEPRECATED' | |
#define HTS_DEPRECATED(message) __attribute__ ((__deprecated__ (message))) | |
^ | |
metaBigBam.c:489:42: error: read-only variable is not assignable | |
h->cigar_tab[(int)BAM_CIGAR_STR[i]] = i; | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ | |
metaBigBam.c:502:35: warning: 'cigar_tab' is deprecated: Use bam_cigar_table[] instead [-Wdeprecated-declarations] | |
op = (uint8_t)*q >= 128? -1 : h->cigar_tab[(int)*q]; | |
^ | |
/usr/local/include/htslib/sam.h:75:29: note: 'cigar_tab' has been explicitly marked deprecated here | |
const int8_t *cigar_tab HTS_DEPRECATED("Use bam_cigar_table[] instead"); | |
^ | |
/usr/local/include/htslib/hts_defs.h:75:49: note: expanded from macro 'HTS_DEPRECATED' | |
#define HTS_DEPRECATED(message) __attribute__ ((__deprecated__ (message))) | |
^ | |
4 warnings and 1 error generated. | |
make[2]: *** [metaBigBam.o] Error 1 | |
make[1]: *** [all-recursive] Error 1 | |
make: *** [all] Error 2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment