comparison defuse.xml @ 27:d57fcac025e2

Add more info fields to defuse_results_to_vcf.py
author Jim Johnson <jj@umn.edu>
date Wed, 14 Aug 2013 16:44:18 -0500
parents 2ecf82136986
children f51a95bdc38e
comparison
equal deleted inserted replaced
26:8f0775c43739 27:d57fcac025e2
9 </requirements> 9 </requirements>
10 <command interpreter="command"> /bin/bash $shscript </command> 10 <command interpreter="command"> /bin/bash $shscript </command>
11 <inputs> 11 <inputs>
12 <param name="left_pairendreads" type="data" format="fastq" label="left part of read pairs" help="The left and right reads pairs must be in the same order, and not have any unpaired reads. (FASTQ interlacer will pair reads and remove the unpaired. FASTQ de-interlacer will separate the result into left and right reads.)"/> 12 <param name="left_pairendreads" type="data" format="fastq" label="left part of read pairs" help="The left and right reads pairs must be in the same order, and not have any unpaired reads. (FASTQ interlacer will pair reads and remove the unpaired. FASTQ de-interlacer will separate the result into left and right reads.)"/>
13 <param name="right_pairendreads" type="data" format="fastq" label="right part of read pairs" help="In the same order as the left reads"/> 13 <param name="right_pairendreads" type="data" format="fastq" label="right part of read pairs" help="In the same order as the left reads"/>
14 <param name="library_name" type="text" value="unknown" label="library name" help="Value to put in the results library_name column">
15 <validator type="length" min="1"/>
16 </param>
14 <conditional name="refGenomeSource"> 17 <conditional name="refGenomeSource">
15 <param name="genomeSource" type="select" label="Will you select a built-in DeFuse Reference Dataset, or supply a configuration from your history" help=""> 18 <param name="genomeSource" type="select" label="Will you select a built-in DeFuse Reference Dataset, or supply a configuration from your history" help="">
16 <option value="indexed">Use a built-in DeFuse Reference Dataset</option> 19 <option value="indexed">Use a built-in DeFuse Reference Dataset</option>
17 <option value="history">Use a configuration from your history that specifies the DeFuse Reference Dataset</option> 20 <option value="history">Use a configuration from your history that specifies the DeFuse Reference Dataset</option>
18 </param> 21 </param>
571 ln -s $defuse_out.extra_files_path output_dir 574 ln -s $defuse_out.extra_files_path output_dir
572 #else 575 #else
573 mkdir -p output_dir 576 mkdir -p output_dir
574 #end if 577 #end if
575 ## run defuse.pl 578 ## run defuse.pl
576 perl \${DEFUSE_PATH}/scripts/defuse.pl -c $defuse_config -1 data_dir/reads_1.fastq -2 data_dir/reads_2.fastq -o output_dir -p 8 579 perl \${DEFUSE_PATH}/scripts/defuse.pl -name "$library_name" -c $defuse_config -1 data_dir/reads_1.fastq -2 data_dir/reads_2.fastq -o output_dir -p 8
577 ## copy primary results to output datasets 580 ## copy primary results to output datasets
578 if [ -e output_dir/log/defuse.log ]; then cp output_dir/log/defuse.log $defuse_log; fi 581 if [ -e output_dir/log/defuse.log ]; then cp output_dir/log/defuse.log $defuse_log; fi
579 ## if [ -e output_dir/results.tsv ]; then cp output_dir/results.tsv $results_tsv; fi 582 ## if [ -e output_dir/results.tsv ]; then cp output_dir/results.tsv $results_tsv; fi
580 if [ -e output_dir/results.filtered.tsv ]; then cp output_dir/results.filtered.tsv $results_filtered_tsv; fi 583 if [ -e output_dir/results.filtered.tsv ]; then cp output_dir/results.filtered.tsv $results_filtered_tsv; fi
581 if [ -e output_dir/results.classify.tsv ]; then cp output_dir/results.classify.tsv $results_classify_tsv; fi 584 if [ -e output_dir/results.classify.tsv ]; then cp output_dir/results.classify.tsv $results_classify_tsv; fi