annotate data_manager/add_ctat_resource_lib.xml @ 52:0e3e4f24e300 draft

Adding ctat_cravat_tissues table.
author trinity_ctat
date Tue, 06 Nov 2018 11:53:38 -0500
parents c47ac2deaaf8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
1 <tool id="ctat_genome_resource_libs_data_manager"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
2 name="CTAT Genome Resource Libraries Data Manager"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
3 version="2.0.0" tool_type="manage_data">
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
4 <!-- This Data Manager tool was written by Cicada Dennis of Indiana University for the Broad Institute.
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
5 -->
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
6 <description>Retrieve, and/or specify the location of, a CTAT Genome Resource Library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
7 </description>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
8 <requirements>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
9 <requirement type="package" version="2.7">python</requirement>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
10 <requirement type="package" version="0.5.0">fusion-filter</requirement>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
11 <requirement type="package" version="2.0.1">ctat-mutations</requirement>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
12 </requirements>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
13 <command detect_errors="exit_code">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
14 <![CDATA[
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
15 python $__tool_directory__/add_ctat_resource_lib.py
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
16 --output_filename="${out_file}"
52
0e3e4f24e300 Adding ctat_cravat_tissues table.
trinity_ctat
parents: 49
diff changeset
17 --display_name="${display_name}"
0e3e4f24e300 Adding ctat_cravat_tissues table.
trinity_ctat
parents: 49
diff changeset
18 --cravat_tissues_filepath="${__tool_directory__}/../tool-data/ctat_cravat_tissues.loc.sample"
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
19 #if str( $genome_resource_library.build_type ) == "download_and_build":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
20 --download_url="${genome_resource_library.download_url}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
21 --download_location="${genome_resource_library.download_destination}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
22 #if str( $genome_resource_library.force_new_download ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
23 --new_archive_download
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
24 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
25 #if str( $genome_resource_library.keep_archive ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
26 --keep_archive
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
27 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
28 #if str( $genome_resource_library.rebuild ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
29 --new_library_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
30 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
31 #if str( $genome_resource_library.specify_build_location.build_location ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
32 --build_location="${genome_resource_library.specify_build_location.different_build_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
33 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
34 #elif str( $genome_resource_library.build_type ) == "build_from_source":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
35 --source_location "${genome_resource_library.source_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
36 #if str( $genome_resource_library.rebuild ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
37 --new_library_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
38 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
39 #if str( $genome_resource_library.specify_build_location.build_location ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
40 --build_location="${genome_resource_library.specify_build_location.different_build_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
41 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
42 #elif str( $genome_resource_library.build_type ) == "specify_built_location":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
43 --build_location="${genome_resource_library.built_library_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
44 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
45
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
46 #if str( $gmap_options.gmap_build ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
47 --gmap_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
48 #if str( $gmap_options.force_gmap_build ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
49 --force_gmap_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
50 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
51 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
52
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
53 #if str( $mutation_lib_options.mutation_build ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
54 --download_mutation_resources_url="${mutation_lib_options.source_url}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
55 --cosmic_resources_location="${mutation_lib_options.cosmic_files_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
56 #if str( $mutation_lib_options.force_download ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
57 --new_mutation_download
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
58 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
59 #if str( $mutation_lib_options.redo_integration ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
60 --new_mutation_integration
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
61 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
62 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
63 ]]>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
64 </command>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
65 <inputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
66 <conditional name="genome_resource_library">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
67 <param name="build_type" type="select" label="Download CTAT Genome Resource Library?">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
68 <option value="download_and_build" selected="true">Download from CTAT and build if needed</option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
69 <option value="build_from_source">Build library from local source data</option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
70 <option value="specify_built_location">Specify location of built library</option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
71 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
72 <when value="download_and_build">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
73 <!-- The use of a code block to get dynamic options is now deprecated and discouraged.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
74 I am still using it here. The only other way I can think of to do this is to
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
75 create another data_manager that gets the list of files and puts them into a
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
76 data_table, that is then used to get the filenames. That would require the admin
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
77 to first run the data_manager that builds the filename data_table before running
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
78 this data_manager.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
79 This is the dynamic way to get the options filled.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
80 <param name="filename" type="select" label="Select File" display="radio"
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
81 dynamic_options="get_ctat_genome_urls()"
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
82 help="Select a CTAT Genome Resource Library to Download." />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
83 Here is the static method for what is online in April 2017:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
84 <param name="filename" type="select" label="Choose which library to download.">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
85 <option value="https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/GRCh37_v19_CTAT_lib_Feb092018.plug-n-play.tar.gz">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
86 GRCh37_v19_CTAT_lib_Feb092018.plug-n-play.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
87 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
88 <option value="https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/ GRCh37_v19_CTAT_lib_Feb092018.source_data.tar.gz">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
89 GRCh37_v19_CTAT_lib_Feb092018.source_data.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
90 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
91 <option value="https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/ GRCh38_v27_CTAT_lib_Feb092018.plug-n-play.tar.gz">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
92 GRCh38_v27_CTAT_lib_Feb092018.plug-n-play.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
93 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
94 <option value="https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/ GRCh38_v27_CTAT_lib_Feb092018.source_data.tar.gz">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
95 GRCh38_v27_CTAT_lib_Feb092018.source_data.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
96 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
97 <option value="https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/ Mouse_M16_CTAT_lib_Feb202018.plug-n-play.tar.gz">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
98 Mouse_M16_CTAT_lib_Feb202018.plug-n-play.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
99 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
100 <option value="https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/ Mouse_M16_CTAT_lib_Feb202018.source_data.tar.gz">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
101 Mouse_M16_CTAT_lib_Feb202018.source_data.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
102 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
103 -->
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
104 <param name="download_url" type="select" label="Select a File"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
105 dynamic_options="get_ctat_genome_urls()"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
106 help="Select a CTAT Genome Resource Library to Download.">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
107 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
108 <param name="download_destination" type="text" label="Download Destination (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
109 <param name="force_new_download" type="boolean" checked="false" label="Force New Download?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
110 <param name="keep_archive" type="boolean" checked="true" label="Keep downloaded archive rather than deleting after build?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
111 <param name="rebuild" type="boolean" checked="false" label="Force new build of Library?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
112 <conditional name="specify_build_location">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
113 <param name="build_location" type="boolean" checked="false" label="Is the build location different than the source location?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
114 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
115 <param name="different_build_location" type="text" label="Build Location (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
116 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
117 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
118 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
119 <when value="build_from_source">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
120 <param name="source_location" type="text" label="Location of Source Files (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
121 <param name="rebuild" type="boolean" checked="false" label="Force new build of Library?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
122 <conditional name="specify_build_location">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
123 <param name="build_location" type="boolean" checked="false" label="Is the build location different than the source location?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
124 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
125 <param name="different_build_location" type="text" label="Build Location (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
126 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
127 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
128 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
129 <when value="specify_built_location">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
130 <param name="built_library_location" type="text" label="Location of the Built Library (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
131 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
132 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
133 <param name="display_name" type="text" label="Reference Genome Display Name" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
134 <conditional name="gmap_options">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
135 <param name="gmap_build" type="boolean" checked="true" label="Do a gmap_build on the Library?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
136 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
137 <param name="force_gmap_build" type="boolean" checked="false" label="Force a new build even if previously done?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
138 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
139 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
140 <conditional name="mutation_lib_options">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
141 <param name="mutation_build" type="boolean" checked="false" label="Download and integrate mutation library?">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
142 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
143 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
144 <param name="source_url" type="select" label="Select a File"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
145 dynamic_options="get_mutation_resource_urls()"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
146 help="Select CTAT Mutation Library File to Download.\nMake sure it is the right one for your CTAT Genome Resource Library!">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
147 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
148 <param name="force_download" type="boolean" checked="false" label="Force New Download?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
149 <param name="redo_integration" type="boolean" checked="false" label="Redo Library Integration?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
150 <param name="cosmic_files_location" type="text" label="Location of the COSMIC files (See Tool Notes)." />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
151 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
152 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
153 </inputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
154 <outputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
155 <data name="out_file" format="data_manager_json" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
156 </outputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
157 <help>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
158 Retrieve, and/or specify the location of, a CTAT Genome Resource Library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
159
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
160 There are three options: 1) Download from CTAT and build if needed; 2) Build library from local source data; 3) Specify location of built library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
161
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
162 1) Download from CTAT and build if needed:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
163 This option uses the files at https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
164 as selectors for the user to choose among.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
165 Specify the Full Path of the location where the CTAT Genome Resource Library should be placed.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
166 The other options should be self-explanatory.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
167 2) Build library from local source data:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
168 This assumes that you have already downloaded the source data for a build and you want to build it.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
169 3) Specify location of built library:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
170 This assumes you already have a build library and need tell galaxy where it is.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
171
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
172 All options allow the user to do a gmap_build on the library
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
173 and also to integrate ctat-mutation resources into the library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
174
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
175 You will need approximately 62GB of space for a human genome resource library, once it is built,
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
176 but if downloading and building, to be safe provide at least 75GB.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
177
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
178 The installation of this tool takes some time, due to building a conda environment for the dependencies.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
179 The "source_data" files download faster, but then must be built.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
180 Building the library from the "source_data" files can take many hours, depending on the resources of your machine.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
181 The "plug-n-play" can take considerable time to download, depending on your internet connection. Even with high speed,
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
182 it is about 25GB that is transfered, so plan accordingly.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
183 If you have a good speed internet connection, downloading the plug-n-play will usually be faster than building.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
184
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
185 **If a download or a build is interrupted, re-running the job should pick up where it left off.**
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
186
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
187 Neither the "source_data" nor the "plug-n-play" versions have had their gmap index built. If you are not going to be
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
188 using gmap_fusion, then you can uncheck the gmap_build check box and save the space and time building the index consumes.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
189
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
190 Neither the "source_data" nor the "plug-n-play" versions have Mutation Resources included.
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
191 Those must be downloaded separately and integrated into the Library. If you are going to be using the
52
0e3e4f24e300 Adding ctat_cravat_tissues table.
trinity_ctat
parents: 49
diff changeset
192 ctat_mutations tool, check the Download Mutation Library check box. Whether or not you check this box, the
0e3e4f24e300 Adding ctat_cravat_tissues table.
trinity_ctat
parents: 49
diff changeset
193 ctat_cravat_tissues table needed by the ctat_mutations tool will be created.
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
194
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
195 In order to integrate the Mutation Resources into a CTAT Genome Resource Library, you must have previously downloaded
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
196 COSMIC resources (See Step 2 from https://github.com/NCIP/ctat-mutations/tree/master/mutation_lib_prep )
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
197 You can place them directly into the Genome Resource Library location, or if the Library is
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
198 not built yet, or you do not know the full path to it, specify the directory where the COSMIC files are, so they can be
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
199 integrated into the Library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
200
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
201 The Mouse genome is not currently supported by ctat_mutations.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
202
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
203 If the Reference Genome Display Name is left empty a name will be created,
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
204 but any text that will best guide the user can be entered here.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
205 It will be the text that is used for selecting the library in pull down lists
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
206 requiring a Genome Reference Library resource (These are stored in the ctat_genome_resource_libs table).
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
207
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
208 For more information on CTAT Genome Resource Libraries,
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
209 see https://github.com/FusionFilter/FusionFilter/wiki
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
210 </help>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
211 <code file="add_ctat_resource_lib.py" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
212 </tool>