view FalseDiscoveryRate.xml @ 3:c221d1871982 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit daf6dfc513ede9b890125d9fff2c2657d834eea9
author galaxyp
date Fri, 14 Jul 2017 18:43:05 -0400
parents 63290cfc707b
children 72867c3a5839
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.2.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_out:
  -out $param_out
#end if
#if $param_PSM:
  -PSM
  #if " " in str($param_PSM):
    "$param_PSM"
  #else
    $param_PSM
  #end if
#end if
#if $param_protein:
  -protein
  #if " " in str($param_protein):
    "$param_protein"
  #else
    $param_protein
  #end if
#end if
#if $param_FDR_PSM:
  -FDR:PSM $param_FDR_PSM
#end if
#if $param_FDR_protein:
  -FDR:protein $param_FDR_protein
#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="False" label="Identifications from searching a target-decoy database" help="(-in) "/>
    <param name="param_PSM" display="radio" type="select" optional="False" value="true" label="Perform FDR calculation on PSM level" help="(-PSM) ">
      <option value="true" selected="true">true</option>
      <option value="false">false</option>
    </param>
    <param name="param_protein" display="radio" type="select" optional="False" value="true" label="Perform FDR calculation on protein level" help="(-protein) ">
      <option value="true" selected="true">true</option>
      <option value="false">false</option>
    </param>
    <param name="param_FDR_PSM" type="float" min="0.0" max="1.0" optional="True" value="1.0" label="Filter PSMs based on q-value (" help="(-PSM) e.g., 0.05 = 5% FDR, disabled for 1)"/>
    <param name="param_FDR_protein" type="float" min="0.0" max="1.0" optional="True" value="1.0" label="Filter proteins based on q-value (" help="(-protein) e.g., 0.05 = 5% FDR, disabled for 1)"/>
    <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>