comparison add_expression_data.xml @ 14:133309fd6875 draft

"planemo upload commit c4edbc8a0ffd86395f088cb5b6592f77db658ac7"
author proteore
date Fri, 24 Jan 2020 04:22:48 -0500
parents 0b279190f90d
children 208b87582b4c
comparison
equal deleted inserted replaced
13:0b279190f90d 14:133309fd6875
1 <tool id="rna_abbased_data" name="Add expression data" version="2019.06.27"> 1 <tool id="rna_abbased_data" name="Add expression data" version="2020.01.24">
2 <description> (RNAseq or Immuno-assays)[Human Protein Atlas] 2 <description> (RNAseq or Immuno-assays)[Human Protein Atlas]
3 </description> 3 </description>
4 <requirements> 4 <requirements>
5 <requirement type="package" version="3.4.1">R</requirement> 5 <requirement type="package" version="3.4.4">R</requirement>
6 </requirements> 6 </requirements>
7 <stdio> 7 <stdio>
8 <exit_code range="1:" /> 8 <exit_code range="1:" />
9 </stdio> 9 </stdio>
10 <command><![CDATA[ 10 <command><![CDATA[
11 11
12 #if $inputtype.filetype == "copy_paste": 12 Rscript $__tool_directory__/add_expression_HPA.R
13 13 --input='$inputtype.genelist'
14 Rscript $__tool_directory__/add_expression_HPA.R --inputtype="copypaste" --input='$inputtype.genelist' --atlas="$__tool_directory__/proteinatlas.csv" --select='$options.hpaparams' --output='$output' 14 --select='$options.hpaparams'
15 --output='$output'
16
17 #if $inputtype.filetype == "copy_paste":
18 --inputtype="copypaste"
19 #else
20 --inputtype="tabfile"
21 --header='$inputtype.header'
22 --column='$inputtype.column'
23 #end if
15 24
16 #else 25 #if "protein_atlas" in str($ref_file).split("/")
17 26 --atlas="$ref_file"
18 Rscript $__tool_directory__/add_expression_HPA.R --inputtype="tabfile" --input='$inputtype.genelist' --header='$inputtype.header' --atlas="$__tool_directory__/proteinatlas.csv" --column='$inputtype.column' --select='$options.hpaparams' --output='$output' 27 #else
19 28 --atlasf="$__tool_directory__/$ref_file"
20 #end if 29 #end if
21
22 30
23 ]]></command> 31 ]]></command>
24 32
25 <inputs> 33 <inputs>
34 <param name="ref_file" type="select" label="HPA source file version" >
35 <options from_data_table="proteore_protein_full_atlas">
36 <filter type="sort_by" column="0"/>
37 </options>
38 </param>
26 <conditional name="inputtype"> 39 <conditional name="inputtype">
27 <param name="filetype" type="select" label="Enter your IDs (Ensembl gene IDs only, e.g. ENSG00000064787)" help="Copy/paste or from a file (e.g. table)"> 40 <param name="filetype" type="select" label="Enter your IDs (Ensembl gene IDs only, e.g. ENSG00000064787)" help="Copy/paste or from a file (e.g. table)">
28 <option value="file_all" selected="true">Input file containing your IDs</option> 41 <option value="file_all" selected="true">Input file containing your IDs</option>
29 <option value="copy_paste">Copy/paste your list of IDs</option> 42 <option value="copy_paste">Copy/paste your list of IDs</option>
30 </param> 43 </param>
52 <param name="hpaparams" type="select" label="Select information to add to your list" multiple="True" display="checkboxes" optional="false" > 65 <param name="hpaparams" type="select" label="Select information to add to your list" multiple="True" display="checkboxes" optional="false" >
53 <option value="Gene" selected="true">Gene name</option> 66 <option value="Gene" selected="true">Gene name</option>
54 <option value="Gene description" selected="false">Gene description</option> 67 <option value="Gene description" selected="false">Gene description</option>
55 <option value="Evidence">Evidence (at protein level, at transcript level or no evidence)</option> 68 <option value="Evidence">Evidence (at protein level, at transcript level or no evidence)</option>
56 <option value="Antibody">Antibody reference</option> 69 <option value="Antibody">Antibody reference</option>
57 <option value="RNA tissue category">RNA tissue category</option> 70 <option value="RNA tissue specificity">RNA tissue category</option>
58 <option value="Reliability (IH)">IH detection level</option> 71 <option value="Reliability (IH)">IH detection level</option>
59 <option value="Reliability (IF)">IF detection level</option> 72 <option value="Reliability (IF)">IF detection level</option>
60 <option value="Subcellular location">Subcellular location</option> 73 <option value="Subcellular location">Subcellular location</option>
61 <option value="RNA TS TPM">RNA tissue specificity abundance in 'Transcript Per Million'</option> 74 <option value="RNA tissue specific NX">RNA tissue specificity abundance in 'Transcript Per Million'</option>
62 <option value="TPM max in non-specific">RNA non-specific tissue abundance in 'Transcript Per Million'</option> 75 <option value="TPM max in non-specific">RNA non-specific tissue abundance in 'Transcript Per Million' (only for 23/10/2018 release)</option>
63 </param> 76 </param>
64 </section> 77 </section>
65 78
66 </inputs> 79 </inputs>
67 80
122 135
123 - Subcellular location:according to HPA data. For more information, please refer to https://www.proteinatlas.org/about/assays+annotation#ifa 136 - Subcellular location:according to HPA data. For more information, please refer to https://www.proteinatlas.org/about/assays+annotation#ifa
124 137
125 - RNA tissue specificity abundance in 'Transcript Per Million': For each gene is reported the tissue specificity abundance in 'Transcript Per Million' (TPM) as the sum of the TPM values of all its protein-coding transcripts. 138 - RNA tissue specificity abundance in 'Transcript Per Million': For each gene is reported the tissue specificity abundance in 'Transcript Per Million' (TPM) as the sum of the TPM values of all its protein-coding transcripts.
126 139
127 - RNA non-specific tissue abundance in 'Transcript Per Million': please refer to http://www.proteinatlas.org/about/assays+annotation#rna. 140 - RNA non-specific tissue abundance in 'Transcript Per Million' (only available from 23/10/2018 release): please refer to http://www.proteinatlas.org/about/assays+annotation#rna.
128 141
129 ----- 142 -----
130 143
131 **Output** 144 **Output**
132 145
133 The output is a tabular file containing initial columns and new columns with annotation from HPA. 146 The output is a tabular file containing initial columns and new columns with annotation from HPA.
134 147
135 ----- 148 -----
136 149
137 **Data sources (release date)** 150 **HPA source file version (release date)**
138 151
139 HPA source file (data are based on the Human Protein Atlas version 18.1 and Ensembl version 88.38): http://www.proteinatlas.org/download/proteinatlas.tab.gz 152 Release date 23/10/2018: data are based on the Human Protein Atlas version 18.1 and Ensembl version 88.38
153
154 Release date 21/01/2020: a subset of the data in the Human Protein Atlas version 19.1
155
156 downloaded from: http://www.proteinatlas.org/download/proteinatlas.tab.gz
140 157
141 ----- 158 -----
142 159
143 .. class:: infomark 160 .. class:: infomark
144 161