Mercurial > repos > muon-spectroscopy-computational-project > cif2cell
changeset 2:60ad7a4f1faf draft
planemo upload for repository https://github.com/muon-spectroscopy-computational-project/muon-galaxy-tools/main/cif2cell commit 4f06b404d8b7fb83995f3052faa7e2ec7811f507
author | muon-spectroscopy-computational-project |
---|---|
date | Fri, 03 Feb 2023 15:38:50 +0000 |
parents | a2583fac03ab |
children | e5f1ac42b063 |
files | cif2cell.xml |
diffstat | 1 files changed, 12 insertions(+), 25 deletions(-) [+] |
line wrap: on
line diff
--- a/cif2cell.xml Thu Sep 15 10:23:01 2022 +0000 +++ b/cif2cell.xml Fri Feb 03 15:38:50 2023 +0000 @@ -1,10 +1,10 @@ -<tool id="cif2cell" name="cif2cell" version="@TOOL_VERSION@+galaxy@WRAPPER_VERSION@" python_template_version="3.5" profile="22.01"> +<tool id="cif2cell" name="cif2cell" version="@TOOL_VERSION@+galaxy@WRAPPER_VERSION@" python_template_version="3.5" profile="22.05" license="MIT"> <description>convert .cif file to .cell</description> <macros> <!-- version of underlying tool (PEP 440) --> <token name="@TOOL_VERSION@">2.0.0a3</token> <!-- version of this tool wrapper (integer) --> - <token name="@WRAPPER_VERSION@">0</token> + <token name="@WRAPPER_VERSION@">1</token> </macros> <creator> <person givenName="Anish" familyName="Mudaraddi" identifier="https://orcid.org/0000-0002-2135-2705"/> @@ -15,23 +15,23 @@ <requirement type="package" version="2.0.0a3">cif2cell</requirement> </requirements> <command detect_errors="exit_code"><![CDATA[ - cif_structure_name=\$(sed 's/ //g' <<< "$cif_structure.name") && - ln -s $cif_structure \$cif_structure_name && - cif2cell -f \$cif_structure_name -p castep -o out.cell + file_name=\$(sed 's/ //g' <<< '$file.name') && + ln -s '$file' \$file_name && + cif2cell -f \$file_name -p castep -o out.cell ]]></command> <inputs> - <param type="data" name="cif_structure" format="cif" label="Structure file to Convert (.cif)" /> + <param type="data" argument="--file" format="cif" label="Structure file to Convert (.cif)" /> </inputs> <outputs> - <data label="Conversion of $cif_structure.name to .cell" name="out_cell" format="cell" from_work_dir="out.cell" /> + <data label="Conversion of $file.name to .cell" name="out_cell" format="cell" from_work_dir="out.cell" /> </outputs> <tests> <test expect_num_outputs="1"> - <param name="cif_structure" value="Si.cif" ftype="cif" /> + <param name="file" value="Si.cif" ftype="cif" /> <output name="out_cell" file="Si_out.cell" compare="diff" lines_diff="2" ftype="cell" /> </test> <test expect_num_outputs="1"> - <param name="cif_structure" value="diamond.cif" ftype="cif" /> + <param name="file" value="diamond.cif" ftype="cif" /> <output name="out_cell" file="diamond_out.cell" compare="diff" lines_diff="2" ftype="cell" /> </test> </tests> @@ -40,23 +40,10 @@ Given an input .cif structure file, convert to equivalent .cell structure file. Uses electronic structure program 'castep' + + cif2cell is distributed under the GPLv3 license. This tool wrapper is distributed under the MIT license. ]]></help> <citations> - <citation type="bibtex"> - @article{cif2cell, - author = {Torbj\"orn Bj\"orkman}, - title = {CIF2Cell: Generating geometries for electronic structure programs}, - journal = {Computer Physics Communications}, - volume = {182}, - number = {5}, - pages = {1183 - 1186}, - year = {2011}, - issn = {0010-4655}, - doi={10.1016/j.cpc.2011.01.013}, - URL={ - http://www.sciencedirect.com/science/article/pii/S0010465511000336 - } - } - </citation> + <citation type="doi">10.1016/j.cpc.2011.01.013</citation> </citations> </tool> \ No newline at end of file