forked from nathandunn/galaxy-monarch-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monarch-homologues.xml
57 lines (56 loc) · 2.6 KB
/
monarch-homologues.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<tool id="monarch-homologues" name="Pull Homologue Information from Monarch" version="0.1.0">
<requirements/>
<stdio>
<exit_code range="1:" />
</stdio>
<command><![CDATA[
#set conditional = "%20" + str($conditional1) + "%20"
#set prefix = "subject_closure:%22"
#set suffix = "%22"
#set inputString = ""
#for inputFile in $input1
#set inputs = open(str($inputFile),'r').read().split(",")
#for input in $inputs
#if $inputString != ""
#set inputString = $inputString + $conditional
#end if
#set inputString = $inputString + $prefix + str($input).strip(' \t\n\r') + $suffix
#end for
#end for
curl -s 'https://solr.monarchinitiative.org/solr/golr/select?defType=edismax&qt=standard&indent=on&wt=csv&rows=100000&start=0&fl=object,object_label,object_taxon,object_taxon_label,relation,relation_label,evidence,evidence_label,source,is_defined_by,qualifier&facet=true&facet.mincount=1&facet.sort=count&json.nl=arrarr&facet.limit=25&facet.method=enum&csv.encapsulator=&csv.separator=%09&csv.header=true&csv.mv.separator=%7C&fq=($inputString)&fq=object_category:%22gene%22&fq=relation_closure:%22RO:HOM0000001%22&facet.field=subject_taxon_closure_label&facet.field=object_taxon_closure_label&q=*:*' | tail -n +2 > $output1
]]></command>
<inputs>
<param name="input1" type="data" format="tabular" multiple="true" label="Gene" />
<param name="conditional1" type="select" multiple="false" display="radio" label="Conditional">
<option value="AND">and</option>
<option value="OR">or</option>
</param>
</inputs>
<outputs>
<data name="output1" type="data" format="tabular" />
</outputs>
<tests>
<test>
<param name="input1" value="gene.tsv"/>
<param name="conditional1" value="OR"/>
<output name="output1" file="homologues-for-gene.tsv"/>
</test>
<test>
<param name="input1" value="2-genes.tsv"/>
<param name="conditional1" value="OR"/>
<output name="output1" file="homologues-for-genes-union.tsv"/>
</test>
<test>
<param name="input1" value="2-genes.tsv"/>
<param name="conditional1" value="AND"/>
<output name="output1" file="homologues-for-genes-intersection.tsv"/>
</test>
</tests>
<help><![CDATA[
Pulls data from monarch web services as TSV given a gene.
object,object_label,object_taxon,object_taxon_label,relation,relation_label,evidence,evidence_label,source,is_defined_by,qualifier
]]></help>
<citations>
<citation type="doi">doi:10.5281/zenodo.56412</citation>
</citations>
</tool>