Mercurial > repos > iuc > crossmap_vcf
annotate crossmap_vcf.xml @ 10:d4965adac10c draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit ad4d739b4837dd61abc85614568d22f271f14568
author | iuc |
---|---|
date | Mon, 02 Sep 2024 12:01:12 +0000 |
parents | 6e96c77f5824 |
children |
rev | line source |
---|---|
7
71730c177cdf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit f436317e2f8d451621e297cfc474e43c20d60bb7"
iuc
parents:
4
diff
changeset
|
1 <tool id="crossmap_vcf" name="CrossMap VCF" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.05"> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
2 <description>Convert genome coordinates or annotation files between genome assemblies</description> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
3 <macros> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
5 </macros> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
6 <expand macro="requirements"/> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
7 <expand macro="stdio"/> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
8 <expand macro="version_command"/> |
4
9d61d74f03a4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit 2dbcf8154aff86b27a1dd535407d20168c4ef697"
iuc
parents:
3
diff
changeset
|
9 <command detect_errors="aggressive"><![CDATA[ |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
10 #set $input_file = str($seq_source.input) |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
11 |
8
6e96c77f5824
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit 07b2b6b9b288fd4ad368fc7a4f0143bb73e9edd9"
iuc
parents:
7
diff
changeset
|
12 ln -s '${seq_source.input_fasta}' 'genome.fasta' && |
6e96c77f5824
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit 07b2b6b9b288fd4ad368fc7a4f0143bb73e9edd9"
iuc
parents:
7
diff
changeset
|
13 |
10
d4965adac10c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit ad4d739b4837dd61abc85614568d22f271f14568
iuc
parents:
8
diff
changeset
|
14 CrossMap vcf |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
15 |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
16 #if $seq_source.index_source_s == "cached" |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
17 ## This is the 2nd dbkey, and the corresponding value has to be looked up |
2
7a3c34157901
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit 39a5f30a013c6d71ea84807b72511e3aa4bab147
iuc
parents:
1
diff
changeset
|
18 "${filter(lambda x: str( x[1] ) == str($seq_source.chain_source.input_chain ), $__app__.tool_data_tables['liftOver'].get_fields())[0][2] }" |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
19 #else |
2
7a3c34157901
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit 39a5f30a013c6d71ea84807b72511e3aa4bab147
iuc
parents:
1
diff
changeset
|
20 '${seq_source.chain_source.input_chain}' |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
21 #end if |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
22 |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
23 '${input_file}' |
8
6e96c77f5824
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit 07b2b6b9b288fd4ad368fc7a4f0143bb73e9edd9"
iuc
parents:
7
diff
changeset
|
24 'genome.fasta' |
7
71730c177cdf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit f436317e2f8d451621e297cfc474e43c20d60bb7"
iuc
parents:
4
diff
changeset
|
25 $no_comp_alleles |
3
9db73ff23c9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit 23fab16cd40acbd5b0e9d640ed3858040db7a622
iuc
parents:
2
diff
changeset
|
26 output |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
27 ]]></command> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
28 <inputs> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
29 <conditional name="seq_source"> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
30 <param name="index_source_s" type="select" label="Source for Input Data"> |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
31 <option value="cached">Local data (in galaxy)</option> |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
32 <option value="history">From History</option> |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
33 </param> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
34 <when value="cached"> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
35 <param name="input" type="data" format="vcf" label="VCF file"> |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
36 <!-- |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
37 <validator type="unspecified_build"/> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
38 --> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
39 <!-- Gives error in tests |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
40 <validator type="dataset_metadata_in_file" filename="liftOver.loc" metadata_name="dbkey" metadata_column="0" message="LiftOver mapping (chain file) is not available for the specified build."/> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
41 --> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
42 </param> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
43 <param name="input_fasta" type="select" label="Lift Over To (FASTA file)" help="The FASTA file must be on the same build (dbkey) as the LiftOver chain file"> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
44 <options from_data_table="all_fasta"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
45 </param> |
10
d4965adac10c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit ad4d739b4837dd61abc85614568d22f271f14568
iuc
parents:
8
diff
changeset
|
46 <expand macro="chain"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
47 </when> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
48 <when value="history"> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
49 <param name="input" type="data" format="vcf" label="VCF file"/> |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
50 <param name="input_fasta" type="data" format="fasta" label="Full genome FASTA file"/> |
10
d4965adac10c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit ad4d739b4837dd61abc85614568d22f271f14568
iuc
parents:
8
diff
changeset
|
51 <expand macro="chain"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
52 </when> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
53 </conditional> |
7
71730c177cdf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit f436317e2f8d451621e297cfc474e43c20d60bb7"
iuc
parents:
4
diff
changeset
|
54 <param argument="--no-comp-alleles" type="boolean" truevalue="" falsevalue="--no-comp-alleles" checked="true" label="Check if the reference allele is different from the alternate allele"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
55 </inputs> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
56 <outputs> |
10
d4965adac10c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit ad4d739b4837dd61abc85614568d22f271f14568
iuc
parents:
8
diff
changeset
|
57 <data name="output" format="vcf" label="${tool.name} on ${on_string}" from_work_dir="output"/> |
d4965adac10c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit ad4d739b4837dd61abc85614568d22f271f14568
iuc
parents:
8
diff
changeset
|
58 <data name="output_unmapped" format="vcf" label="${tool.name} (unmapped) on ${on_string}" from_work_dir="output.unmap"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
59 </outputs> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
60 <tests> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
61 <test> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
62 <param name="index_source_s" value="history"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
63 <param name="input" value="test_vcf_01_input.vcf" ftype="vcf"/> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
64 <param name="index_source" value="history"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
65 <param name="input_fasta" value="test_vcf_01.fasta" ftype="fasta"/> |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
66 <param name="input_chain" value="test_vcf_01.over.chain" ftype="csv"/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
67 <output name="output"> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
68 <assert_contents> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
69 <has_text text="##fileformat=VCFv4.2"/> |
10
d4965adac10c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit ad4d739b4837dd61abc85614568d22f271f14568
iuc
parents:
8
diff
changeset
|
70 <has_text_matching expression="##liftOverProgram=CrossMap,version=[0-9.]+,website=https://crossmap.readthedocs.io/en/latest"/> |
7
71730c177cdf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit f436317e2f8d451621e297cfc474e43c20d60bb7"
iuc
parents:
4
diff
changeset
|
71 <has_text text="##targetRefGenome="/> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
72 <has_text text="#CHROM"/> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
73 <has_text_matching expression="2.*?rs11449.*?PASS"/> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
74 <has_text_matching expression="2.*?rs84825.*?PASS"/> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
75 </assert_contents> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
76 </output> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
77 <output name="output_unmapped" file="test_vcf_01_output.vcf.unmap"/> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
78 </test> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
79 </tests> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
80 <help><![CDATA[ |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
81 @HELP_GENERAL@ |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
82 |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
83 VCF |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
84 --- |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
85 |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
86 VCF (variant call format) is a flexible and extendable line-oriented |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
87 text format developed by the 1000 Genome Project. It is useful for |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
88 representing single nucleotide variants, indels, copy number |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
89 variants, and structural variants. Chromosomes, coordinates, and |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
90 reference alleles are updated to a new assembly, and all the other |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
91 fields are not changed. |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
92 |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
93 Notes: |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
94 |
1
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
95 - Genome coordinates and reference allele will be updated to target assembly. |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
96 - Reference genome is genome sequence of target assembly. |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
97 - If the reference genome sequence file (../database/genome/hg18.fa) was |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
98 not indexed, CrossMap will automatically indexed it (only the first time |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
99 you run CrossMap). |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
100 - In the output VCF file, whether the chromosome IDs contain “chr” or not |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
101 depends on the format of the input VCF file. |
a40d9af7d058
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
iuc
parents:
0
diff
changeset
|
102 ]]></help> |
0
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
103 <citations> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
104 <citation type="doi">10.1093/bioinformatics/btt730</citation> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
105 </citations> |
734eedede47c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit d578fad97ce545d68dde40155d36426a121e4447
iuc
parents:
diff
changeset
|
106 </tool> |