view data_manager/bowtie_index_builder.xml @ 0:eef68fde2b29 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_bowtie_index_builder commit 5c5d8acf6955dc4f404998ac7929f13363ef2c41
author nate
date Tue, 29 Jul 2025 17:12:20 +0000
parents
children
line wrap: on
line source

<tool id="bowtie_index_builder_data_manager" name="Bowtie index" tool_type="manage_data" version="@WRAPPER_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.0">
    <description>builder</description>
    <macros>
        <token name="@WRAPPER_VERSION@">1.3.1</token>
        <token name="@VERSION_SUFFIX@">1</token>
    </macros>
    <requirements>
        <requirement type="package" version="@WRAPPER_VERSION@">bowtie</requirement>
    </requirements>
    <command detect_errors="exit_code"><![CDATA[
        #set $fasta_file_name = str($all_fasta_source.fields.path).split('/')[-1]
        mkdir -p '${out_file.extra_files_path}' &&
        ln -s '${all_fasta_source.fields.path}' '${out_file.extra_files_path}/${fasta_file_name}' &&
        bowtie-build '${out_file.extra_files_path}/${fasta_file_name}' '${out_file.extra_files_path}/${fasta_file_name}' &&
        rm '${out_file.extra_files_path}/${fasta_file_name}' &&
        cp '$dmjson' '$out_file'
        ]]>
    </command>
    <configfiles>
        <configfile name="dmjson"><![CDATA[#slurp
#set $fasta_file_name = str($all_fasta_source.fields.path).split('/')[-1]
#set $value = $sequence_id or $all_fasta_source.fields.dbkey
#set $name = $sequence_name or $all_fasta_source.fields.name
{
  "data_tables":{
    "bowtie_indexes":[
      {
        "value": "${value}",
        "dbkey": "${all_fasta_source.fields.dbkey}",
        "name": "${name}",
        "path": "${fasta_file_name}"
      }
    ]
  }
}
]]></configfile>
    </configfiles>
    <inputs>
        <param name="all_fasta_source" type="select" label="Source FASTA Sequence">
            <options from_data_table="all_fasta"/>
        </param>
        <param name="sequence_name" type="text" value="" label="Name of sequence" help="Leave blank to use all_fasta name" />
        <param name="sequence_id" type="text" value="" label="ID for sequence" help="Leave blank to use all_fasta id" />
    </inputs>
    <outputs>
        <data name="out_file" format="data_manager_json"/>
    </outputs>
    <tests>
        <test>
            <param name="all_fasta_source" value="phiX174"/>
            <output name="out_file" file="bowtie_data_manager.1.json"/>
        </test>
        <test>
            <param name="all_fasta_source" value="phiX174"/>
            <param name="sequence_name" value="Galeocerdo cuvier"/>
            <param name="sequence_id" value="tigHai1"/>
            <output name="out_file" file="bowtie_data_manager.2.json"/>
        </test>
    </tests>
    <help><![CDATA[
.. class:: infomark

**Notice:** If you leave name, description, or id blank, it will be generated automatically.
    ]]></help>
    <citations>
        <citation type="doi">10.1186/gb-2009-10-3-r25</citation>
    </citations>
</tool>