yat  0.12.3pre
config_bam.h
1 #ifndef theplu_yat_omic_config_bam
2 #define theplu_yat_omic_config_bam
3 
4 // $Id: config_bam.h 3068 2013-08-01 03:16:44Z peter $
5 //
6 // Copyright (C) 2012, 2013 Peter Johansson
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program. If not, see <http://www.gnu.org/licenses/>.
20 
21 /*
22  The purpose of this file is to cater for different installation
23  styles. As samtools' Makefile contains no install rule, different
24  distributions have come up with different ideas where to put
25  samtools' header files. Red Hat put them in '/usr/include/bam'
26  whereas Ubuntu put them in '/usr/include/samtools/'. We could solve
27  this by #including <bam.h> and then add appropriate include path
28  (-I) flags to the compiler, but in order to support arbitrary
29  PREFIX we instead choose to #define macros BAM_HEADER and
30  SAM_HEADER depending on where we found the bam headers (at
31  configure time) as <bam.h>, <bam/bam.h>, or <samtools/bam.h>.
32  */
33 
35 
36 #ifdef YAT_HAVE_BAM_H
37 # define YAT_BAM_HEADER "bam.h"
38 # define YAT_SAM_HEADER "sam.h"
39 #else
40 # ifdef YAT_HAVE_BAM_BAM_H
41 # define YAT_BAM_HEADER "bam/bam.h"
42 # define YAT_SAM_HEADER "bam/sam.h"
43 # else
44 # ifdef YAT_HAVE_SAMTOOLS_BAM_H
45 # define YAT_BAM_HEADER "samtools/bam.h"
46 # define YAT_SAM_HEADER "samtools/sam.h"
47 # endif
48 # endif
49 #endif
50 
51 #ifndef YAT_BAM_HEADER
52 #error This file requires samtools header files and cannot be used when \
53 yat was configured with switch '--without-samtools'.
54 #endif
55 
56 #endif

Generated on Mon Jun 1 2015 12:29:51 for yat by  doxygen 1.8.5