Files
galaxy/tools/data_source/encode_import_gencode.xml
T
Greg Von Kuster cd52cabd48 Eliminated hard-codes paths to locally cached data from tools, requires developers to add softlinks to development environments.
Galaxy developers should execute the following commands in their $UNIVERSE_HOME/tool-data directories:

ln -s /depot/data2/galaxy/alignseq.loc alignseq.loc
ln -s /depot/data2/galaxy/binned_scores.loc binned_scores.loc
ln -s /depot/data2/galaxy/blastdb.loc blastdb.loc
ln -s /depot/data2/galaxy/encode_datasets.loc encode_datasets.loc
ln -s /depot/data2/galaxy/liftOver.loc liftOver.loc
ln -s /depot/data2/galaxy/maf_index.loc maf_index.loc
ln -s /depot/data2/galaxy/maf_pairwise.loc maf_pairwise.loc
ln -s /depot/data2/galaxy/microbes/microbial_data.loc microbial_data.loc
ln -s /depot/data2/galaxy/phastOdds.loc phastOdds.loc
ln -s /depot/data2/galaxy/quality_scores.loc quality_scores.loc
ln -s /depot/data2/galaxy/regions.loc regions.loc
ln -s /depot/data2/galaxy/twobit.loc twobit.loc
2008-03-21 18:31:39 +00:00

59 lines
2.7 KiB
XML

<tool id="encode_import_gencode1" name="Gencode Datasets">
<command interpreter="python">encode_import.py $hg17,$hg16 $output</command>
<inputs>
<display>
<p><div class="toolFormTitle">hg17 (most recent datasets in bold)</div>$hg17</p>
<p><div class="toolFormTitle">hg16 (most recent datasets in bold)</div>$hg16</p>
</display>
<param name="hg17" type="select" display="checkboxes" multiple="true">
<options from_file="encode_datasets.loc">
<filter type="param" name="encode_group" value="GENCODE" />
<filter type="param" name="dbkey" value="hg17" />
</options>
</param>
<param name="hg16" type="select" display="checkboxes" multiple="true">
<options from_file="encode_datasets.loc">
<filter type="param" name="encode_group" value="GENCODE" />
<filter type="param" name="dbkey" value="hg16" />
</options>
</param>
</inputs>
<outputs>
<data format="bed" name="output"/>
</outputs>
<code file="encode_import_code.py"/>
<help>
.. class:: warningmark
The data in this section is intended as a supplement for this manuscript_. Use the **Get Data->UCSC Main** tool for current ENCODE data.
.. _manuscript: http://www.genome.org/cgi/content/full/17/6/960
These are the datasets used for partitioning files.
For detailed information about data deposition and partitioning, click here_.
.. _here: http://genome.imim.es/gencode/wiki/index.php/Collecting_Feature_Sets_from_All_Analysis_Groups
*[gencode_partitioned]* means that the dataset was partitioned according to the protocol below:
A partition scheme has been defined that is similar to what has previously been done with TARs/TRANSFRAGs such that any feature can be classified as falling into one of the following 6 categories:
1. **Coding** -- coding exons defined from the GENCODE experimentally verified coding set (coding in any transcript)
2. **5UTR** -- 5' UTR exons defined from the GENCODE experimentally verified coding set (5' UTR in some transcript but never coding in any other)
3. **3UTR** -- 3' UTR exons defined from the GENCODE experimentally verified coding set (3' UTR in some transcript but never coding in any other)
4. **Intronic Proximal** -- intronic and no more than 5kb away from an exon.
5. **Intergenic Proximal** -- between genes and no more than 5kb away from an exon.
6. **Intronic Distal** -- intronic and greater than 5kb away from an exon.
7. **Intergenic Distal** -- between genes and greater than 5kb away from an exon.
-----
.. class:: infomark
**Note:** Features overlapping more than one partition will take the identity of the lower-numbered partition.
</help>
</tool>