comparison vcf.xml @ 1:974b39eb89b6 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnvkit commit fc1282ec68b346988203ead860e9b9d6a47e9efb
author iuc
date Sat, 01 Mar 2025 11:55:26 +0000
parents 4cf5a2dd27dd
children
comparison
equal deleted inserted replaced
0:4cf5a2dd27dd 1:974b39eb89b6
28 #if $advanced_settings.diploid_parx_genome 28 #if $advanced_settings.diploid_parx_genome
29 --diploid-parx-genome '$advanced_settings.diploid_parx_genome' 29 --diploid-parx-genome '$advanced_settings.diploid_parx_genome'
30 #end if 30 #end if
31 ]]></command> 31 ]]></command>
32 <inputs> 32 <inputs>
33 <param name="input_segmented_file" type="data" format="tabular" label="Segmented Copy Ratio Data File (cns file)" help="" /> 33 <param name="input_segmented_file" type="data" format="cns" label="Segmented Copy Ratio Data File (cns file)" help="" />
34 <section name="advanced_settings" title="Advanced settings" expanded="false"> 34 <section name="advanced_settings" title="Advanced settings" expanded="false">
35 <param argument="--cnr" optional="true" type="data" format="tabular" label="Bin-level copy ratios (cnr)" help="" /> 35 <param argument="--cnr" optional="true" type="data" format="cnr" label="Bin-level copy ratios (cnr)" help="" />
36 <param argument="--sample-id" optional="true" type="text" label="Sample ID" value="" help="Sample name to write in the genotype field of the output VCF file" /> 36 <param argument="--sample-id" type="text" label="Sample ID" help="Sample name to write in the genotype field of the output VCF file" />
37 <param argument="--ploidy" optional="true" type="integer" label="Ploidy" min="1" value="2" help="Ploidy of the sample cells. [Default: 2]" /> 37 <param argument="--ploidy" optional="true" type="integer" label="Ploidy" min="1" value="2" help="Ploidy of the sample cells. [Default: 2]" />
38 <expand macro="sample_sex"/> 38 <expand macro="sample_sex"/>
39 <param argument="--male-reference" type="boolean" checked="false" truevalue="--male-reference" falsevalue="" label="MALE REFERENCE" help="Assume inputs were normalized to a male reference" /> 39 <param argument="--male-reference" type="boolean" checked="false" truevalue="--male-reference" falsevalue="" label="MALE REFERENCE" help="Assume inputs were normalized to a male reference" />
40 <param argument="--diploid-parx-genome" optional="true" type="text" label="Diploid Parx Genome" value="" help="Considers the given human genome's PAR of chromosome X as autosomal. Example: 'grch38'" /> 40 <param argument="--diploid-parx-genome" type="text" label="Diploid Parx Genome" help="Considers the given human genome's PAR of chromosome X as autosomal. Example: 'grch38'" />
41 </section> 41 </section>
42 </inputs> 42 </inputs>
43 <outputs> 43 <outputs>
44 <data name="CNVs_VCF" format="vcf" label="${tool.name} on ${on_string}: CNVs VCF file" from_work_dir="sample.cnv.vcf" /> 44 <data name="CNVs_VCF" format="vcf" label="${tool.name} on ${on_string}: CNVs VCF file" from_work_dir="sample.cnv.vcf" />
45 </outputs> 45 </outputs>
46 <tests> 46 <tests>
47 <test expect_num_outputs="1"> 47 <test expect_num_outputs="1">
48 <param name="input_segmented_file" ftype="tabular" value="sample.cns" /> 48 <param name="input_segmented_file" ftype="cns" value="sample.cns" />
49 <param name="sample_id" value="SampleID" /> 49 <param name="sample_id" value="SampleID" />
50 <param name="sample_sex" value="Female" /> 50 <param name="sample_sex" value="Female" />
51 <output name="CNVs_VCF" file="sample.cnv.vcf" ftype="vcf" lines_diff="2" /> 51 <output name="CNVs_VCF" file="sample.cnv.vcf" ftype="vcf" lines_diff="2" />
52 </test> 52 </test>
53 </tests> 53 </tests>
54 <help><![CDATA[ 54 <help><![CDATA[
55 Export the segmented copy number data (from a .cns file) to the standard VCF 4.2 format. 55 Export the segmented copy number data (from a .cns file) to the standard VCF 4.2 format.
56 The resulting VCF file describes copy number gains and losses across each segment and contains 56 The resulting VCF file describes copy number gains and losses across each segment and contains
57 INFO fields for breakpoints (CIPOS, CIEND) if bin-level data (.cnr) is provided. 57 INFO fields for breakpoints (CIPOS, CIEND) if bin-level data (.cnr) is provided.
58
59 -----
60
61 **Bin-level log2 ratios (.cnr)**
62
63 Tabular file containing normalized log2 ratios for small genomic bins (divided regions of the genome). Used to detect raw copy number variations (CNVs) before segmentation.
64
65 .. csv-table::
66 :header-rows: 0
67
68 "chromosome","Genomic chromosome (e.g., chr1, chrX)"
69 "start","Start position of the bin."
70 "end","End position of the bin."
71 "gene","Gene name(s) overlapping the bin (if applicable)."
72 "log2","Normalized log2 ratio (sample coverage / reference coverage)."
73 "depth","Average read depth in the bin."
74 "weight","Reliability weight of the bin (higher = more reliable)."
75
76 -----
77
78 **Segmented log2 ratios (.cns)**
79
80 Tabular file with smoothed, merged segments of stable copy number, derived from the .cnr file. Represents final CNV calls.
81
82 .. csv-table::
83 :header-rows: 0
84
85 "chromosome","start, end: Genomic coordinates of the segment"
86 "gene","Gene(s) overlapping the segment."
87 "log2","Mean log2 ratio of the segment."
88 "probes","Mean log2 ratio of the segment."
89 "depth","Average read depth."
90 "weight","Reliability weight."
91 "p_value","Statistical confidence (lower = more significant)."
92
93
58 ]]></help> 94 ]]></help>
59 <expand macro="citations" /> 95 <expand macro="citations" />
60 </tool> 96 </tool>
61 97
62 98