Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force input of rt correction in recetox-aplcms to be a collection #596

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tools/recetox_aplcms/recetox_aplcms_correct_time.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tool id="recetox_aplcms_correct_time" name="recetox-aplcms - correct time" version="@TOOL_VERSION@+galaxy0" profile="21.09">
<tool id="recetox_aplcms_correct_time" name="recetox-aplcms - correct time" version="@TOOL_VERSION@+galaxy1" profile="21.09">
<description>correct retention time across samples for peak alignment</description>
<macros>
<import>macros.xml</import>
Expand Down Expand Up @@ -37,9 +37,9 @@
</configfiles>

<inputs>
<param label="Input clustered features table" name="features_table" type="data" format="parquet"
help="Mass spectrometry clustered features table." />
<param label="Input template features table" name="template" type="data" format="parquet"
<param label="Input clustered feature tables" name="features_table" type="data_collection" collection_type="list" format="parquet"
help="Mass spectrometry clustered features tables." />
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is multiple=true not enough?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It kind of needs to be a collection - otherwise It doesn't make much sense. Also, the way how I want to use the tool in a workflow, if my one input is a list of lists, I'd expect the other one to be a list - this is currently not possible in the workflow editor.

<param label="Input template feature table" name="template" type="data" format="parquet"
help="Template features table." />
</inputs>

Expand Down
Loading