Mercurial > repos > mingchen0919 > aurora_htseq
comparison htseq_count.xml @ 2:db9da9716914 draft
add r-dt
| author | mingchen0919 |
|---|---|
| date | Wed, 07 Mar 2018 00:12:55 -0500 |
| parents | cc33706a1d4b |
| children | 1545e24c9ba7 |
comparison
equal
deleted
inserted
replaced
| 1:cc33706a1d4b | 2:db9da9716914 |
|---|---|
| 8 </requirements> | 8 </requirements> |
| 9 <stdio> | 9 <stdio> |
| 10 <regex match="XXX" source="stderr" level="warning" | 10 <regex match="XXX" source="stderr" level="warning" |
| 11 description="Check the warnings_and_errors.txt file for more details."/> | 11 description="Check the warnings_and_errors.txt file for more details."/> |
| 12 </stdio> | 12 </stdio> |
| 13 <command><![CDATA[Rscript '${__tool_directory__}/aurora_htseq_count.R' | 13 <command><![CDATA[Rscript '${__tool_directory__}/htseq_count_render.R' |
| 14 | 14 |
| 15 -e $echo | 15 -e $echo |
| 16 -o $report | 16 -o $report |
| 17 -d $report.files_path | 17 -d $report.files_path |
| 18 -s $sink_message | 18 -s $sink_message |
| 19 -t '${__tool_directory__}' | 19 -t '${__tool_directory__}' |
| 20 | 20 |
| 21 -A '$alignment_files' | |
| 22 -B '$sample_names' | |
| 23 -G $gff | |
| 21 -f $format | 24 -f $format |
| 22 -r $order | 25 -r $order |
| 23 -S $stranded | 26 -S $stranded |
| 24 -a $minaqual | 27 -a $minaqual |
| 25 -T $feature_type | 28 -T $feature_type |
| 26 -i $idattr | 29 -i $idattr |
| 27 -I $additional_attr | 30 -m $mode |
| 28 -m $mode]]></command> | 31 -c $count]]></command> |
| 29 <inputs> | 32 <inputs> |
| 30 <param type="boolean" name="echo" truevalue="TRUE" falsevalue="FALSE" checked="false" | 33 <param type="boolean" name="echo" truevalue="TRUE" falsevalue="FALSE" checked="false" |
| 31 label="Display analysis code in report?"/> | 34 label="Display analysis code in report?"/> |
| 32 <param type="data" name="alignment_file" label="Alignment file (SAM/BAM)" optional="False" format="sam,bam"/> | 35 <param type="data" name="alignment_files" label="Alignment file (SAM/BAM)" optional="False" format="sam,bam" |
| 33 <param type="data" name="gff" label="GFF file" optional="False" format="gff, gff3"/> | 36 multiple="True"/> |
| 37 <param type="text" name="sample_names" label="Sample names" | |
| 38 help="sample names for each input SAM/BAM file. Use comma to separate multiple names, for example, sample_1, sample_2, sample_3. The number of sample names should be the same as the number of input SAM/BAM files." | |
| 39 optional="False" size="5x25"/> | |
| 34 <param type="select" name="format" argument="-f" label="Input data format" optional="False" multiple="False"> | 40 <param type="select" name="format" argument="-f" label="Input data format" optional="False" multiple="False"> |
| 35 <option value="sam" selected="false">SAM</option> | 41 <option value="sam" selected="false">SAM</option> |
| 36 <option value="bam" selected="false">BAM</option> | 42 <option value="bam" selected="false">BAM</option> |
| 37 </param> | 43 </param> |
| 44 <param type="data" name="gff" label="GFF file" optional="False" format="gff, gff3"/> | |
| 38 <param type="select" name="order" argument="-r" label="Order" | 45 <param type="select" name="order" argument="-r" label="Order" |
| 39 help="Use this option to indicate how the input data has been sorted. The default is name. " | 46 help="Use this option to indicate how the input data has been sorted. The default is name. " |
| 40 optional="False" multiple="False"> | 47 optional="False" multiple="False"> |
| 41 <option value="name" selected="false">Name</option> | 48 <option value="name" selected="false">Name</option> |
| 42 <option value="pos" selected="false">Position</option> | 49 <option value="pos" selected="false">Position</option> |
| 53 help="Feature type (3rd column in GFF file) to be used, all features of other type are ignored (default, suitable for RNA-Seq analysis using an Ensembl GTF file: exon)" | 60 help="Feature type (3rd column in GFF file) to be used, all features of other type are ignored (default, suitable for RNA-Seq analysis using an Ensembl GTF file: exon)" |
| 54 optional="False" value="exon"/> | 61 optional="False" value="exon"/> |
| 55 <param type="text" name="idattr" argument="-i" label="ID attribute" | 62 <param type="text" name="idattr" argument="-i" label="ID attribute" |
| 56 help="GFF attribute to be used as feature ID. Several GFF lines with the same feature ID will be considered as parts of the same feature. The feature ID is used to identity the counts in the output table. The default, suitable for RNA-Seq analysis using an Ensembl GTF file, is gene_id." | 63 help="GFF attribute to be used as feature ID. Several GFF lines with the same feature ID will be considered as parts of the same feature. The feature ID is used to identity the counts in the output table. The default, suitable for RNA-Seq analysis using an Ensembl GTF file, is gene_id." |
| 57 optional="False" value="gene_id"/> | 64 optional="False" value="gene_id"/> |
| 58 <param type="text" name="additional_attr" argument="--additional-attr" label="Additional attributes" | |
| 59 help="Additional feature attributes, which will be printed as an additional column after the primary attribute column but before the counts column(s). The default is none, a suitable value to get gene names using an Ensembl GTF file is gene_name." | |
| 60 optional="True"/> | |
| 61 <param type="select" name="mode" argument="-m" label="Mode" | 65 <param type="select" name="mode" argument="-m" label="Mode" |
| 62 help="Mode to handle reads overlapping more than one feature. Possible values for <mode> are union, intersection-strict and intersection-nonempty (default: union)" | 66 help="Mode to handle reads overlapping more than one feature. Possible values for <mode> are union, intersection-strict and intersection-nonempty (default: union)" |
| 63 optional="False" multiple="False"> | 67 optional="False" multiple="False"> |
| 64 <option value="union" selected="true">Union</option> | 68 <option value="union" selected="true">Union</option> |
| 65 <option value="intersection-strict" selected="false">Intersection (strict)</option> | 69 <option value="intersection-strict" selected="false">Intersection (strict)</option> |
| 66 <option value="intersection-nonempty" selected="false">Intersection (nonempty)</option> | 70 <option value="intersection-nonempty" selected="false">Intersection (nonempty)</option> |
| 67 </param> | 71 </param> |
| 68 </inputs> | 72 </inputs> |
| 69 <outputs> | 73 <outputs> |
| 70 <data name="Aurora htseq" format="html" label="Aurora htseq on ${on_string}" hidden="false"/> | 74 <data name="report" format="html" label="Aurora htseq on ${on_string}" hidden="false"/> |
| 71 <data format="txt" name="sink_message" label="Warnings and Errors" from_work_dir="warnings_and_errors.txt"/> | 75 <data format="txt" name="sink_message" label="Warnings and Errors" from_work_dir="warnings_and_errors.txt"/> |
| 72 <data name="count" format="txt" label="Aurora htseq-count on ${on_string}" hidden="false"/> | 76 <data name="count" format="txt" label="Aurora htseq-count on ${on_string}" hidden="false"/> |
| 73 </outputs> | 77 </outputs> |
| 74 <citations> | 78 <citations> |
| 75 <citation type="bibtex"><