Mercurial > repos > iuc > variant_analyzer
comparison mut2sscs.xml @ 2:3f1dbd2c59bf draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/variant_analyzer commit f492e9717cb946f0eb5689cd7b6eb8067abf6468"
| author | iuc |
|---|---|
| date | Tue, 10 Nov 2020 12:55:29 +0000 |
| parents | 3556001ff2db |
| children |
comparison
equal
deleted
inserted
replaced
| 1:3556001ff2db | 2:3f1dbd2c59bf |
|---|---|
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <tool id="mut2sscs" name="DCS mutations to SSCS stats:" version="1.0.1" profile="19.01"> | 2 <tool id="mut2sscs" name="DCS mutations to SSCS stats:" version="2.0.0" profile="19.01"> |
| 3 <description>Extracts all tags from the single stranded consensus sequence (SSCS) bam file that carry a mutation at the same position a mutation is called in the duplex consensus sequence (DCS) and calculates their frequencies</description> | 3 <description>Extracts all tags from the single stranded consensus sequence (SSCS) bam file that carry a mutation at the same position a mutation is called in the duplex consensus sequence (DCS) and calculates their frequencies</description> |
| 4 <macros> | 4 <macros> |
| 5 <import>va_macros.xml</import> | 5 <import>va_macros.xml</import> |
| 6 </macros> | 6 </macros> |
| 7 <expand macro="requirements"/> | 7 <expand macro="requirements"/> |
| 13 --bamFile bam_input.bam | 13 --bamFile bam_input.bam |
| 14 --outputJson '$output_json' | 14 --outputJson '$output_json' |
| 15 ]]> | 15 ]]> |
| 16 </command> | 16 </command> |
| 17 <inputs> | 17 <inputs> |
| 18 <param name="file1" type="data" format="tabular" label="DCS Mutation File" optional="false" help="TABULAR file with DCS mutations. See Help section below for a detailed explanation."/> | 18 <param name="file1" type="data" format="vcf" label="DCS Mutation File" optional="false" help="VCF file with DCS mutations. See Help section below for a detailed explanation."/> |
| 19 <param name="file2" type="data" format="bam" label="SSCS BAM File" optional="false" help="BAM file with aligned SSCS reads."/> | 19 <param name="file2" type="data" format="bam" label="SSCS BAM File" optional="false" help="BAM file with aligned SSCS reads."/> |
| 20 </inputs> | 20 </inputs> |
| 21 <outputs> | 21 <outputs> |
| 22 <data name="output_json" format="json" label="${tool.name} on ${on_string}: JSON"/> | 22 <data name="output_json" format="json" label="${tool.name} on ${on_string}: JSON"/> |
| 23 </outputs> | 23 </outputs> |
| 24 <tests> | 24 <tests> |
| 25 <test> | 25 <test> |
| 26 <param name="file1" value="DCS_Mutations_test_data_VA.tabular"/> | 26 <param name="file1" value="FreeBayes_test.vcf"/> |
| 27 <param name="file2" value="SSCS_test_data_VA.bam"/> | 27 <param name="file2" value="SSCS_test.bam"/> |
| 28 <output name="output_json" file="SSCS_counts_test_data_VA.json" lines_diff="2"/> | 28 <output name="output_json" file="SSCS_counts_test.json" lines_diff="2"/> |
| 29 </test> | 29 </test> |
| 30 </tests> | 30 </tests> |
| 31 <help> <