Open ZeroDesigner opened 3 years ago
I'm not sure I fully understand the question, but it seems there is some error in the XML wrapper.
All the best,
Simon
@ZeroDesigner please have a look at https://planemo.readthedocs.io/en/latest/standards/docs/best_practices.html this will get you started in Galaxy tool development. Please try planemo
it will for example lint your XML file and point you to the errors.
I'm not sure I fully understand the question, but it seems there is some error in the XML wrapper.
All the best,
Simon
XML file is here.
<tool id="ledock001" name="easy ledock" version="0.0.1" >
<description>easy for ledock</description>
<requirements>
<requirement type="package" version="v1.0">LeDock</requirement>
<requirement type="package" version="3.5~3.7">Python</requirement>
</requirements>
<command>
<![CDATA[
python '/Users/sujiaqi/Desktop/Github/GalaxyNote/galaxy_tool/ledock_1/ledock.py'
'$protein_file' '$lig_list' $RMSD' '$xmin' '$xmax' '$ymin' '$ymax' '$zmin' '$zmax' '$RMSD'
]]>
</command>
<inputs>
<param format="pdb" name="protein_file" type="data" label="protein file"/>
<param name="lig_list" type="data" format="zip" label="lig file"/>
<param name="RMSD" type="float" value="1" min="0" max="2" label="RMSD"/>
<param name="xmin" type="float" value="0" min="-1000" max="1000" label="xmin"/>
<param name="xmax" type="float" value="0" min="-1000" max="1000" label="xmax"/>
<param name="ymin" type="float" value="0" min="-1000" max="1000" label="ymin"/>
<param name="ymax" type="float" value="0" min="-1000" max="1000" label="ymax"/>
<param name="zmin" type="float" value="0" min="-1000" max="1000" label="zmin"/>
<param name="zmax" type="float" value="0" min="-1000" max="1000" label="zmax"/>
<param name="nbp" type="integer" value="20" min="0" max="100" label="num of pose"/>
</inputs>
<outputs>
<data format="txt" type="data" name="out" />
</outputs>
<help>
this tool is designed for docking
</help>
</tool>
Hi @ZeroDesigner,
check the command - a '
is missing before $RMSD
.
Can you spend some time looking at this tutorial please? https://planemo.readthedocs.io/en/latest/writing_standalone.html
Also, can I ask how you plan to deploy this tool? It seems Ledock is proprietary software and you will have problems deploying it on a public-facing server.
Hi @ZeroDesigner,
check the command - a
'
is missing before$RMSD
.Can you spend some time looking at this tutorial please? https://planemo.readthedocs.io/en/latest/writing_standalone.html
Also, can I ask how you plan to deploy this tool? It seems Ledock is proprietary software and you will have problems deploying it on a public-facing server.
Thank You,I will read the tutorial carefully. I will deploy it on local computer without facing the public. And if necessary, I will contact the lephar to see whether we can deloy it on a public server.
hi, I am a new one to galaxy. And I want to write a new tool. My scrip is here and it's for ledock. And when it runs, errors are here:
So my question is : how can I fix the problem. And I also want to know , when I upload my file to galaxy , where my file is (the path) .