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

Specifying multiple deferred datasets for an input parameter is not handled correctly #19324

Open
richard-burhans opened this issue Dec 13, 2024 · 0 comments

Comments

@richard-burhans
Copy link
Contributor

richard-burhans commented Dec 13, 2024

Describe the bug
The following tool has an input parameter that takes multiple datasets. When multiple datasets are selected as the input, it works as expected. If multiple deferred datasets are selected as input, only a single deferred dataset is passed to the tool.

I did not test using a mix of regular and deferred datasets.

<tool id="bug" name="Bug" version="1.0+galaxy0" profile="21.05">
    <description>with deferred datasets</description>
    <requirements>
        <requirement type="package" version="5">bash</requirement>
    </requirements>
    <command detect_errors="aggressive"><![CDATA[
    touch cmd.txt cfg.txt &&
    #for $file in $rnaseq
        echo $file >> cmd.txt &&
    #end for
    cat $bug_config >> cfg.txt
    ]]></command>
    <configfiles>
        <configfile name="bug_config"><![CDATA[
        #for $file in $rnaseq
$file
        #end for
        ]]></configfile>
    </configfiles>
    <inputs>
        <param name="rnaseq" type="data" format="fastqsanger,fastqsanger.gz" multiple="true" label="Select multiple RNA-seq fastqsanger inputs from the current history"/>
    </inputs>
    <outputs>
        <data name="cmd_output" format="txt" label="Bug command on ${on_string}" from_work_dir="cmd.txt"/>
        <data name="cfg_output" format="txt" label="Bug config on ${on_string}" from_work_dir="cfg.txt"/>
    </outputs>
    <help><![CDATA[
::

  for copy-paste:
  https://ftp.ncbi.nlm.nih.gov/genomes/TOOLS/EGAP/sample_data/Dermatophagoides_farinae_small/SRR8506572_1.gz
  https://ftp.ncbi.nlm.nih.gov/genomes/TOOLS/EGAP/sample_data/Dermatophagoides_farinae_small/SRR8506572_2.gz
  https://ftp.ncbi.nlm.nih.gov/genomes/TOOLS/EGAP/sample_data/Dermatophagoides_farinae_small/SRR9005248_1.gz
  https://ftp.ncbi.nlm.nih.gov/genomes/TOOLS/EGAP/sample_data/Dermatophagoides_farinae_small/SRR9005248_2.gz


    ]]></help>
</tool>

Galaxy Version and/or server at which you observed the bug
Galaxy Version: 24.1
Commit: 3c82972

Browser and Operating System
Operating System: Linux
Browser: Chrome

To Reproduce
bug

Expected behavior
All deferred datasets selected as in input should be made available to the tool.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant