1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
<tables>
<!-- Locations of MAF files that have been indexed with bx-python -->
<table name="indexed_maf_files">
<columns>name, value, dbkey, species</columns>
<file path="tool-data/maf_index.loc" />
</table>
<!-- Locations of indexes in the BWA mapper format -->
<table name="bwa_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/bwa_index.loc" />
</table>
<!-- Locations of indexes in the Bowtie mapper format -->
<table name="bowtie_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/bowtie_indices.loc" />
</table>
<!-- Locations of indexes in the Bowtie2 mapper format -->
<table name="bowtie2_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/bowtie2_indices.loc" />
</table>
<!-- Locations of indexes in the Bowtie mapper format for TopHat to use -->
<table name="tophat_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/bowtie_indices.loc" />
</table>
<!-- Locations of indexes in the Bowtie2 mapper format for TopHat2 to use -->
<table name="tophat2_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/bowtie2_indices.loc" />
</table>
<!-- Location of SAMTools indexes and other files -->
<table name="sam_fa_indexes" comment_char="#">
<columns>index, value, path</columns>
<file path="tool-data/sam_fa_indices.loc" />
</table>
<!-- Location of Picard dict file and other files -->
<table name="picard_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/picard_index.loc" />
</table>
<!-- Location of Picard dict files valid for GATK -->
<table name="gatk_picard_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/gatk_sorted_picard_index.loc" />
</table>
<!-- Alignment and sequence data -->
<table name="alignseq">
<!-- XXX This has two different types of columns -->
<columns>index, dbkey, value</columns>
<file path="tool-data/alignseq.loc" />
</table>
<!-- UCSC twoBit indexed files -->
<table name="twobit">
<columns>dbkey, value</columns>
<file path="tool-data/twobit.loc" />
</table>
<!-- liftOver files -->
<table name="lift_over">
<columns>dbkey1, dbkey2, value</columns>
<file path="tool-data/liftOver.loc" />
</table>
<!-- Location of Mosaik files -->
<table name="mosaik_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/mosaik_index.loc" />
</table>
<!-- Novoalign indexes, not part of default Galaxy configurations -->
<table name="novoalign_indexes" comment_char="#">
<columns>value, dbkey, name, path</columns>
<file path="tool-data/novoalign_indices.loc" />
</table>
</tables>
|