view snpsplit.xml @ 1:14dfc38234cd draft

Deleted selected files
author rijst
date Wed, 12 Dec 2012 06:26:42 -0500
parents cc961e057668
children
line wrap: on
line source

<tool id="snpsplit" name="SNP splitter">
  <description>splits multicharacter entries into separate lines</description>
  <command interpreter="python">snpsplit.py $input $output</command>
  <inputs>
    <param name="input" type="data" format="tabular" label="SNP table" />
  </inputs>
  <outputs>
    <data name="output" format="tabular" label="${tool.name} on ${on_string}" />
  </outputs>
  <help>

Input: tab delimited, format Position Ref Mut
Position is 1-based genomic coordinate
Ref is the reference sequence
Mut is the mutant sequence

Ref en Mut sequences consisting of more than one character will be split up into separate lines. Example:
Input:  
123 CGT ATG
Output: 
123 C A
124 G T
125 T G

Bases that are the same in both columns, will be skipped. Example:
Input:  
123 CGT AGG
Output: 
123 C A
125 T G

  </help>
</tool>