/var/lib/mobyle/programs/rnaduplex.xml is in mobyle-programs 5.1.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | <?xml version='1.0' encoding='UTF-8'?>
<!-- XML Authors: Corinne Maufrais, Nicolas Joly and Bertrand Neron, -->
<!-- 'Biological Software and Databases' Group, Institut Pasteur, Paris. -->
<!-- Distributed under LGPLv2 License. Please refer to the COPYING.LIB document. -->
<program>
<head>
<name>rnaduplex</name>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Entities/ViennaRNA_package.xml"/>
<doc>
<title>RNAduplex</title>
<description>
<text lang="en">Compute the structure upon hybridization of two RNA strands</text>
</description>
<authors>Ivo Hofacker</authors>
<comment>
<text lang="en">RNAduplex reads two RNA sequences from file and
computes optimal and suboptimal secondary structures for their hybridization. The calculation is simplified by allowing only inter-molecular base pairs.</text>
</comment>
</doc>
<category>sequence:nucleic:2D_structure</category>
<category>structure:2D_structure</category>
<command>RNAduplex</command>
</head>
<parameters>
<parameter ismandatory="1" issimple="1">
<name>seq</name>
<prompt lang="en">RNA Sequence File</prompt>
<type>
<biotype>DNA</biotype>
<datatype>
<class>Sequence</class>
</datatype>
<dataFormat>FASTA</dataFormat>
</type>
<format>
<code proglang="perl">" < $value" </code>
<code proglang="python">" < "+ str(value) </code>
</format>
<argpos>1000</argpos>
</parameter>
<paragraph>
<name>control</name>
<prompt lang="en">Control options</prompt>
<argpos>2</argpos>
<parameters>
<parameter>
<name>suboptimal</name>
<prompt lang="en">Suboptimal structures (-e)</prompt>
<type>
<datatype>
<class>Integer</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">(defined $value and $value!=$vdef)? " -e $value" : ""</code>
<code proglang="python">( "" , " -e " + str(value))[ value is not None and value != vdef ]</code>
</format>
<comment>
<text lang="en">Compute suboptimal structures with energy with range kcal/mol of the optimum. Default is calculation of mfe structure only.</text>
</comment>
</parameter>
<parameter>
<name>temperature</name>
<prompt lang="en">Rescale energy parameters to a temperature of temp C. (-T)</prompt>
<type>
<datatype>
<class>Integer</class>
</datatype>
</type>
<vdef>
<value>37</value>
</vdef>
<format>
<code proglang="perl">(defined $value and $value != $vdef)? " -T $value" : ""</code>
<code proglang="python">( "" , " -T " + str(value) )[ value is not None and value != vdef]</code>
</format>
</parameter>
<parameter>
<name>tetraloops</name>
<prompt lang="en">Do not include special stabilizing energies for certain tetraloops (-4)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value)? " -4" : ""</code>
<code proglang="python">( "" , " -4" )[ value ]</code>
</format>
</parameter>
</parameters>
</paragraph>
<paragraph>
<name>input</name>
<prompt lang="en">Input parameters</prompt>
<argpos>2</argpos>
<parameters>
<parameter>
<name>noGU</name>
<prompt lang="en">Do not allow GU pairs (-noGU)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value)? " -noGU" : ""</code>
<code proglang="python">( "" , " -noGU" )[ value ]</code>
</format>
</parameter>
<parameter>
<name>noCloseGU</name>
<prompt lang="en">Do not allow GU pairs at the end of helices (-noCloseGU)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value)? " -noCloseGU" : ""</code>
<code proglang="python">( "" , " -noCloseGU" )[ value ]</code>
</format>
</parameter>
<parameter>
<name>parameter</name>
<prompt lang="en">Energy parameter file (-P)</prompt>
<type>
<datatype>
<class>EnergyParameterFile</class>
<superclass>AbstractText</superclass>
</datatype>
</type>
<format>
<code proglang="perl">(defined $value)? " -P $value" : ""</code>
<code proglang="python">( "" , " -P " + str(value) )[ value is not None ]</code>
</format>
<comment>
<text lang="en">Read energy parameters from paramfile, instead of using the default parameter set. A sample parameterfile should accompany your distribution. See the RNAlib documentation for details on the file format.</text>
</comment>
</parameter>
</parameters>
</paragraph>
<parameter ishidden="1">
<name>readseq</name>
<type>
<datatype>
<class>String</class>
</datatype>
</type>
<format>
<code proglang="perl">"<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../../Local/Services/Programs/Env/ViennaRNA_readseq.xml" xpointer="xpointer(/readseq_path/text())"><xi:fallback/></xi:include>readseq -f=19 -a $seq > $seq.tmp && (cp $seq $seq.orig && mv $seq.tmp $seq) ; "</code>
<code proglang="python">"<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../../Local/Services/Programs/Env/ViennaRNA_readseq.xml" xpointer="xpointer(/readseq_path/text())"><xi:fallback/></xi:include>readseq -f=19 -a "+ str(seq) + " > "+ str(seq) +".tmp && (cp "+ str(seq) +" "+ str(seq) +".orig && mv "+ str(seq) +".tmp "+ str(seq) +") ; "</code>
</format>
<argpos>-10</argpos>
</parameter>
<parameter isout="1">
<name>psfiles</name>
<prompt>Postscript file</prompt>
<type>
<datatype>
<class>PostScript</class>
<superclass>Binary</superclass>
</datatype>
</type>
<filenames>
<code proglang="perl">"*.ps"</code>
<code proglang="python">"*.ps"</code>
</filenames>
</parameter>
</parameters>
</program>
|