annotate data_manager/add_ctat_resource_lib.xml @ 49:c47ac2deaaf8 draft

Adding comments.
author trinity_ctat
date Fri, 26 Oct 2018 11:17:43 -0400
parents 76f2367996b8
children 0e3e4f24e300
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}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
17 --display_name="${display_name}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
18 #if str( $genome_resource_library.build_type ) == "download_and_build":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
19 --download_url="${genome_resource_library.download_url}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
20 --download_location="${genome_resource_library.download_destination}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
21 #if str( $genome_resource_library.force_new_download ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
22 --new_archive_download
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
23 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
24 #if str( $genome_resource_library.keep_archive ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
25 --keep_archive
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
26 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
27 #if str( $genome_resource_library.rebuild ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
28 --new_library_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
29 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
30 #if str( $genome_resource_library.specify_build_location.build_location ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
31 --build_location="${genome_resource_library.specify_build_location.different_build_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
32 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
33 #elif str( $genome_resource_library.build_type ) == "build_from_source":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
34 --source_location "${genome_resource_library.source_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
35 #if str( $genome_resource_library.rebuild ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
36 --new_library_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
37 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
38 #if str( $genome_resource_library.specify_build_location.build_location ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
39 --build_location="${genome_resource_library.specify_build_location.different_build_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
40 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
41 #elif str( $genome_resource_library.build_type ) == "specify_built_location":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
42 --build_location="${genome_resource_library.built_library_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
43 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
45 #if str( $gmap_options.gmap_build ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
46 --gmap_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
47 #if str( $gmap_options.force_gmap_build ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
48 --force_gmap_build
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
49 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
50 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
51
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
52 #if str( $mutation_lib_options.mutation_build ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
53 --download_mutation_resources_url="${mutation_lib_options.source_url}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
54 --cosmic_resources_location="${mutation_lib_options.cosmic_files_location}"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
55 #if str( $mutation_lib_options.force_download ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
56 --new_mutation_download
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
57 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
58 #if str( $mutation_lib_options.redo_integration ) == "true":
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
59 --new_mutation_integration
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
60 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
61 #end if
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
62 ]]>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
63 </command>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
64 <inputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
65 <conditional name="genome_resource_library">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
66 <param name="build_type" type="select" label="Download CTAT Genome Resource Library?">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
67 <option value="download_and_build" selected="true">Download from CTAT and build if needed</option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
68 <option value="build_from_source">Build library from local source data</option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
69 <option value="specify_built_location">Specify location of built library</option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
70 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
71 <when value="download_and_build">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
72 <!-- The use of a code block to get dynamic options is now deprecated and discouraged.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
73 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
74 create another data_manager that gets the list of files and puts them into a
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
75 data_table, that is then used to get the filenames. That would require the admin
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
76 to first run the data_manager that builds the filename data_table before running
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
77 this data_manager.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
78 This is the dynamic way to get the options filled.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
79 <param name="filename" type="select" label="Select File" display="radio"
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
80 dynamic_options="get_ctat_genome_urls()"
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
81 help="Select a CTAT Genome Resource Library to Download." />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
82 Here is the static method for what is online in April 2017:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
83 <param name="filename" type="select" label="Choose which library to download.">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
84 <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
85 GRCh37_v19_CTAT_lib_Feb092018.plug-n-play.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
86 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
87 <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
88 GRCh37_v19_CTAT_lib_Feb092018.source_data.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
89 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
90 <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
91 GRCh38_v27_CTAT_lib_Feb092018.plug-n-play.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
92 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
93 <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
94 GRCh38_v27_CTAT_lib_Feb092018.source_data.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
95 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
96 <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
97 Mouse_M16_CTAT_lib_Feb202018.plug-n-play.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
98 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
99 <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
100 Mouse_M16_CTAT_lib_Feb202018.source_data.tar.gz
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
101 </option>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
102 -->
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
103 <param name="download_url" type="select" label="Select a File"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
104 dynamic_options="get_ctat_genome_urls()"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
105 help="Select a CTAT Genome Resource Library to Download.">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
106 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
107 <param name="download_destination" type="text" label="Download Destination (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
108 <param name="force_new_download" type="boolean" checked="false" label="Force New Download?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
109 <param name="keep_archive" type="boolean" checked="true" label="Keep downloaded archive rather than deleting after build?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
110 <param name="rebuild" type="boolean" checked="false" label="Force new build of Library?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
111 <conditional name="specify_build_location">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
112 <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
113 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
114 <param name="different_build_location" type="text" label="Build Location (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
115 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
116 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
117 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
118 <when value="build_from_source">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
119 <param name="source_location" type="text" label="Location of Source Files (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
120 <param name="rebuild" type="boolean" checked="false" label="Force new build of Library?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
121 <conditional name="specify_build_location">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
122 <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
123 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
124 <param name="different_build_location" type="text" label="Build Location (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
125 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
126 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
127 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
128 <when value="specify_built_location">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
129 <param name="built_library_location" type="text" label="Location of the Built Library (full path)" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
130 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
131 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
132 <param name="display_name" type="text" label="Reference Genome Display Name" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
133 <conditional name="gmap_options">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
134 <param name="gmap_build" type="boolean" checked="true" label="Do a gmap_build on the Library?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
135 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
136 <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
137 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
138 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
139 <conditional name="mutation_lib_options">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
140 <param name="mutation_build" type="boolean" checked="false" label="Download and integrate mutation library?">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
141 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
142 <when value="true">
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
143 <param name="source_url" type="select" label="Select a File"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
144 dynamic_options="get_mutation_resource_urls()"
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
145 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
146 </param>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
147 <param name="force_download" type="boolean" checked="false" label="Force New Download?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
148 <param name="redo_integration" type="boolean" checked="false" label="Redo Library Integration?" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
149 <param name="cosmic_files_location" type="text" label="Location of the COSMIC files (See Tool Notes)." />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
150 </when>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
151 </conditional>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
152 </inputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
153 <outputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
154 <data name="out_file" format="data_manager_json" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
155 </outputs>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
156 <help>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
157 Retrieve, and/or specify the location of, a CTAT Genome Resource Library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
158
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
159 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
160
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
161 1) Download from CTAT and build if needed:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
162 This option uses the files at https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
163 as selectors for the user to choose among.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
164 Specify the Full Path of the location where the CTAT Genome Resource Library should be placed.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
165 The other options should be self-explanatory.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
166 2) Build library from local source data:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
167 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
168 3) Specify location of built library:
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
169 This assumes you already have a build library and need tell galaxy where it is.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
170
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
171 All options allow the user to do a gmap_build on the library
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
172 and also to integrate ctat-mutation resources into the library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
173
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
174 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
175 but if downloading and building, to be safe provide at least 75GB.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
176
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
177 The installation of this tool takes some time, due to building a conda environment for the dependencies.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
178 The "source_data" files download faster, but then must be built.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
179 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
180 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
181 it is about 25GB that is transfered, so plan accordingly.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
182 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
183
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
184 **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
185
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
186 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
187 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
188
49
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
189 Neither the "source_data" nor the "plug-n-play" versions have Mutation Resources included.
c47ac2deaaf8 Adding comments.
trinity_ctat
parents: 44
diff changeset
190 Those must be downloaded separately and integrated into the Library. If you are going to be using the
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
191 ctat_mutations tool, check the Download Mutation Library check box.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
192
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
193 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
194 COSMIC resources (See Step 2 from https://github.com/NCIP/ctat-mutations/tree/master/mutation_lib_prep )
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
195 You can place them directly into the Genome Resource Library location, or if the Library is
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
196 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
197 integrated into the Library.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
198
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
199 The Mouse genome is not currently supported by ctat_mutations.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
200
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
201 If the Reference Genome Display Name is left empty a name will be created,
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
202 but any text that will best guide the user can be entered here.
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
203 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
204 requiring a Genome Reference Library resource (These are stored in the ctat_genome_resource_libs table).
44
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
205
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
206 For more information on CTAT Genome Resource Libraries,
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
207 see https://github.com/FusionFilter/FusionFilter/wiki
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
208 </help>
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
209 <code file="add_ctat_resource_lib.py" />
76f2367996b8 Uploaded
trinity_ctat
parents:
diff changeset
210 </tool>