Skip to content

Commit

Permalink
added check for number of trajectories
Browse files Browse the repository at this point in the history
  • Loading branch information
hechth committed Sep 11, 2023
1 parent 62e7df1 commit acf0b96
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions tools/qcxms/qcxms_neutral_run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<command detect_errors="exit_code"><![CDATA[
ln $mol molecule.xyz &&
cat qcxms.in &&
qcxms -i molecule.xyz >> $log &&
qcxms -i molecule.xyz >> $log
]]></command>

Expand All @@ -31,7 +32,7 @@
<configfiles>
<configfile filename="qcxms.in"><![CDATA[
${QC_Level}
#if $ntraj
#if $keywords.ntraj
ntraj ${keywords.ntraj}
#end if
tmax ${keywords.tmax}
Expand All @@ -41,7 +42,7 @@
</configfiles>

<inputs>
<param type="data" name="Molecule 3D structure [.xzy]" format="xyz" />
<param type="data" name="mol" label="Molecule 3D structure [.xzy]" format="xyz" />
<param name="QC_Level" type="select" display="radio" label="QC Method">
<option value="xtb2" selected="true">GFN2-xTB</option>
<option value="xtb">GFN-xTB</option>
Expand All @@ -59,13 +60,21 @@
</inputs>

<outputs>
<data name="qcxms_out" format="gs" from_work_dir="qcxms.gs" label="qcxms.gs generated by ${tool.name} on ${on_string}" />
<data name="qcxms_out" format="txt" from_work_dir="qcxms.gs" label="qcxms.gs generated by ${tool.name} on ${on_string}">
<filter>store_extended_output</filter>
</data>
<data name="trajectory" from_work_dir="trjM" format="txt" label="trajectories generated by ${tool.name} on ${on_string}">
<filter>store_extended_output</filter>
</data>
<data name="log" format="txt" label="logfile of ${tool.name} on ${on_string}">
<filter>store_extended_output</filter>
</data>


<collection name="coords" type="list">
<discover_datasets pattern="__designation_and_ext__" format="xyz" directory="TMPQCXMS" recurse="true"/>
</collection>

</outputs>

<help><![CDATA[]]>
Expand Down

0 comments on commit acf0b96

Please sign in to comment.