Mercurial > repos > miller-lab > genome_diversity
diff map_ensembl_transcripts.xml @ 17:a3af29edcce2
Uploaded Miller Lab Devshed version a51c894f5bed
author | miller-lab |
---|---|
date | Fri, 28 Sep 2012 11:57:18 -0400 |
parents | 8ae67e9fb6ff |
children | d6b961721037 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/map_ensembl_transcripts.xml Fri Sep 28 11:57:18 2012 -0400 @@ -0,0 +1,42 @@ +<tool id="gd_new_oscar" name="Get Pathways" version="1.0.0"> + <description>: Look up KEGG pathways for given Ensembl transcripts</description> + + <command interpreter="python"> + rtrnKEGGpthwfENSEMBLTc.py + "--loc_file=${GALAXY_DATA_INDEX_DIR}/gd.oscar.loc" + "--species=${input.metadata.dbkey}" + "--input=${input}" + "--posENSEMBLclmn=${ensembl_col}" + "--output=${output}" + </command> + + <inputs> + <param name="input" type="data" format="tabular" label="Table" /> + <param name="ensembl_col" type="data_column" data_ref="input" label="Column with ENSEMBL transcript code" /> + </inputs> + + <outputs> + <data name="output" format="tabular" /> + </outputs> + + <!-- + <tests> + <test> + <param name="input" value="test_in/ensembl.tabular" ftype="tabular"> + <metadata name="dbkey" value="canFam2" /> + </param> + <param name="ensembl_col" value="1" /> + + <output name="output" file="test_out/map_ensembl_transcripts/map_ensembl_transcripts.tabular" /> + </test> + </tests> + --> + + <help> + +**What it does** + +Adds the fields KEGG gene codes and KEGG pathways to an input table of ENSEMBL transcript codes. + + </help> +</tool>