comparison ncbi_egapx.xml @ 17:e0de8669b340 draft default tip

planemo upload for repository https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx commit 39442b43654a912285459264a7aad1f19e00940a
author richard-burhans
date Mon, 18 Nov 2024 17:24:04 +0000
parents d167f698d5e9
children
comparison
equal deleted inserted replaced
16:d167f698d5e9 17:e0de8669b340
30 #set genome_value = $cond_input_style.cond_genome_style.genome.fields.path 30 #set genome_value = $cond_input_style.cond_genome_style.genome.fields.path
31 #else 31 #else
32 #set genome_value = $cond_input_style.cond_genome_style.uri 32 #set genome_value = $cond_input_style.cond_genome_style.uri
33 #end if 33 #end if
34 genome: $genome_value 34 genome: $genome_value
35 taxid: $taxid 35 taxid: $cond_input_style.taxid
36 #if str($cond_rnaseq_style.rnaseq_style) == "list" 36 #if str($cond_input_style.cond_rnaseq_style.rnaseq_style) == "history"
37 #set $reads_values = $rnaseq.split() 37 #set reads_values = $cond_input_style.cond_rnaseq_style.rnaseq
38 #else 38 #else
39 #set $reads_values = $rnaseq 39 #set reads_values = $cond_input_style.cond_rnaseq_style.rnaseq.split()
40 #end if 40 #end if
41 reads: 41 reads:
42 #for r in [x.strip() for x in $reads_values] 42 #for r in [str(rv).strip() for rv in $reads_values]
43 - $r 43 - $r
44 #end for 44 #end for
45 #if str($proteins) != "None" 45 #if str($cond_input_style.proteins) != "None"
46 proteins: $proteins 46 proteins: $cond_input_styleproteins
47 #end if 47 #end if
48 #for row in $xtra.strip().split("\n") 48 #if str($cond_input_style.xtra) != "None"
49 #for row in str($cond_input_style.xtra).strip().split("\n")
49 $row 50 $row
50 #end for 51 #end for
52 #end if
51 #end if 53 #end if
52 ]]></configfile> 54 ]]></configfile>
53 </configfiles> 55 </configfiles>
54 <inputs> 56 <inputs>
55 <conditional name="cond_input_style"> 57 <conditional name="cond_input_style">
102 <validator type="empty_field"/> 104 <validator type="empty_field"/>
103 </param> 105 </param>
104 </when> 106 </when>
105 </conditional> 107 </conditional>
106 <param name="proteins" type="data" format="fasta,fasta.gz" optional="true" label="Select a protein set"/> 108 <param name="proteins" type="data" format="fasta,fasta.gz" optional="true" label="Select a protein set"/>
107 <param name="xtra" type="text" area="true" label="Additional yaml to append to the egapx.yaml configuration" 109 <param name="xtra" type="text" area="true" optional="true" label="Additional yaml to append to the egapx.yaml configuration"
108 help="Not normally needed but useful for testing additional configuration elements"> 110 help="Not normally needed but useful for testing additional configuration elements">
109 <sanitizer invalid_char=""> 111 <sanitizer invalid_char="">
110 <valid initial="string.printable"/> 112 <valid initial="string.printable"/>
111 </sanitizer> 113 </sanitizer>
112 </param> 114 </param>