view FalseDiscoveryRate.xml @ 0:7e4bc43844e3 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit fb85d488133bb2b5f483b52b2db0ac66038fafb8
author galaxyp
date Wed, 01 Mar 2017 12:23:26 -0500
parents
children 7e170e213707
line wrap: on
line source

<?xml version='1.0' encoding='UTF-8'?>
<!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
<!--Proposed Tool Section: [ID Processing]-->
<tool id="FalseDiscoveryRate" name="FalseDiscoveryRate" version="2.1.0">
  <description>Estimates the false discovery rate on peptide and protein level using decoy searches.</description>
  <macros>
    <token name="@EXECUTABLE@">FalseDiscoveryRate</token>
    <import>macros.xml</import>
  </macros>
  <expand macro="references"/>
  <expand macro="stdio"/>
  <expand macro="requirements"/>
  <command>FalseDiscoveryRate

#if $param_in:
  -in $param_in
#end if
#if $param_in_target:
  -in_target $param_in_target
#end if
#if $param_in_decoy:
  -in_decoy $param_in_decoy
#end if
#if $param_out:
  -out $param_out
#end if
#if $param_proteins_only:
  -proteins_only
#end if
#if $param_peptides_only:
  -peptides_only
#end if
#if $param_algorithm_no_qvalues:
  -algorithm:no_qvalues
#end if
#if $param_algorithm_use_all_hits:
  -algorithm:use_all_hits
#end if
#if $param_algorithm_split_charge_variants:
  -algorithm:split_charge_variants
#end if
#if $param_algorithm_treat_runs_separately:
  -algorithm:treat_runs_separately
#end if
#if $param_algorithm_add_decoy_peptides:
  -algorithm:add_decoy_peptides
#end if
#if $adv_opts.adv_opts_selector=='advanced':
    #if $adv_opts.param_force:
  -force
#end if
#end if
</command>
  <inputs>
    <param name="param_in" type="data" format="idxml" optional="True" label="Identification input file containing a search against a concatenated sequence database" help="(-in) Either specify '-in' alone or 'in_target' together with 'in_decoy' as input"/>
    <param name="param_in_target" type="data" format="idxml" optional="True" label="Identification input file containing a search against a target-only database" help="(-in_target) "/>
    <param name="param_in_decoy" type="data" format="idxml" optional="True" label="Identification input file containing a search against a decoy-only database" help="(-in_decoy) "/>
    <param name="param_proteins_only" display="radio" type="boolean" truevalue="-proteins_only" falsevalue="" checked="false" optional="True" label="If set only the FDR on protein level is calculated" help="(-proteins_only) "/>
    <param name="param_peptides_only" display="radio" type="boolean" truevalue="-peptides_only" falsevalue="" checked="false" optional="True" label="If set only the FDR on peptide (PSM) level is calculated" help="(-peptides_only) "/>
    <param name="param_algorithm_no_qvalues" display="radio" type="boolean" truevalue="-algorithm:no_qvalues" falsevalue="" checked="false" optional="True" label="If 'true' strict FDRs will be calculated instead of q-values (the default)" help="(-no_qvalues) "/>
    <param name="param_algorithm_use_all_hits" display="radio" type="boolean" truevalue="-algorithm:use_all_hits" falsevalue="" checked="false" optional="True" label="If 'true' not only the first hit, but all are used (peptides only)" help="(-use_all_hits) "/>
    <param name="param_algorithm_split_charge_variants" display="radio" type="boolean" truevalue="-algorithm:split_charge_variants" falsevalue="" checked="false" optional="True" label="If 'true' charge variants are treated separately (for peptides of combined target/decoy searches only)" help="(-split_charge_variants) "/>
    <param name="param_algorithm_treat_runs_separately" display="radio" type="boolean" truevalue="-algorithm:treat_runs_separately" falsevalue="" checked="false" optional="True" label="If 'true' different search runs are treated separately (for peptides of combined target/decoy searches only)" help="(-treat_runs_separately) "/>
    <param name="param_algorithm_add_decoy_peptides" display="radio" type="boolean" truevalue="-algorithm:add_decoy_peptides" falsevalue="" checked="false" optional="True" label="If 'true' decoy peptides will be written to output file, too" help="(-add_decoy_peptides) The q-value is set to the closest target score"/>
    <expand macro="advanced_options">
      <param name="param_force" display="radio" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
    </expand>
  </inputs>
  <outputs>
    <data name="param_out" format="idxml"/>
  </outputs>
  <help>Estimates the false discovery rate on peptide and protein level using decoy searches.


For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_FalseDiscoveryRate.html</help>
</tool>