Skip to content

Commit

Permalink
fix linter errors for structure harvester
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Sep 25, 2024
1 parent 0f5d58e commit 8fda22d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 0 additions & 2 deletions tools/structureharvester/.lint_skip

This file was deleted.

14 changes: 9 additions & 5 deletions tools/structureharvester/structureharvester.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<tool id="structureharvester" name="structureHarvester" version="0.6.94">
<tool id="structureharvester" name="structureHarvester" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@">
<description>for parsing STRUCTURE outputs and for performing the Evanno method</description>
<macros>
<token name="@TOOL_VERSION@">0.6.94</token>
<token name="@VERSION_SUFFIX@">1</token>
</macros>
<requirements>
<requirement type="package" version="0.6.94">structureharvester</requirement>
<requirement type="package" version="@TOOL_VERSION@">structureharvester</requirement>
</requirements>
<version_command><![CDATA[
structureHarvester.py --version
Expand All @@ -14,7 +18,7 @@
structureHarvester.py --dir inputs/ --out . $evanno $clumpp &&
mv summary.txt '$summary'
#if $evanno
&& mv evanno.txt $evanno
&& mv evanno.txt '$evanno_out'
#end if
#if $clumpp
&& mkdir clumpp_indfile clumpp_popfile
Expand All @@ -29,7 +33,7 @@
</inputs>
<outputs>
<data name="summary" format="txt" label="Structure Harvester summary"/>
<data name="evanno" format="txt" label="Evann method output">
<data name="evanno_out" format="txt" label="Evann method output">
<filter>evanno</filter>
</data>
<collection name="clumpp_indfile" type="list" label="Clumpp K*.indfile">
Expand All @@ -42,7 +46,7 @@
</collection>
</outputs>
<tests>
<test>
<test expect_num_outputs="3">
<param name="inputs" value="example_harvester_archive/Admix_run_001_f,example_harvester_archive/Admix_run_002_f,example_harvester_archive/Admix_run_004_f,example_harvester_archive/Admix_run_005_f,example_harvester_archive/Admix_run_007_f,example_harvester_archive/Admix_run_008_f,example_harvester_archive/K1ReRun_run_1_f,example_harvester_archive/K1ReRun_run_2_f" />
<param name="evanno" value="false" />
<param name="clumpp" value="true" />
Expand Down

0 comments on commit 8fda22d

Please sign in to comment.