comparison hapmap2mlmm/HapmapToMLMMFiles.xml @ 9:98c37a5d67f4 draft

Uploaded
author dereeper
date Wed, 07 Feb 2018 22:08:47 -0500
parents
children c6640c49fd01
comparison
equal deleted inserted replaced
8:6bf69b40365c 9:98c37a5d67f4
1 <tool id="hapmap_to_mlmm_files" name="HapmapToMLMMFiles" version="1.1">
2 <description>converts a hapmap file into MLMM input files</description>
3 <!-- [STRONGLY RECOMMANDED] Exit code rules -->
4 <stdio>
5 <!-- [HELP] If no exit code rule is defined, the tool will stop if anything is written to STDERR -->
6 <exit_code range="1:" level="fatal" />
7 </stdio>
8 <command interpreter="bash">./HapmapToMLMMFiles.sh $input $snp_info $genot
9 </command>
10 <inputs>
11 <param format="txt" name="input" type="data" label="Allelic file in Hapmap format" help="Allelic file in Hapmap format"/>
12 </inputs>
13 <outputs>
14 <data format="txt" name="snp_info" label="SNP Info file"/>
15 <data format="txt" name="genot" label="Genotyping file for MLMM"/>
16 </outputs>
17
18 <!-- [OPTIONAL] Tests to be run manually by the Galaxy admin -->
19 <tests>
20 <!-- [HELP] Test files have to be in the ~/test-data directory -->
21 <!-- [HELP] Multiple tests can be defined with different parameters -->
22
23 <test>
24 <param name="input" value="hapmap2mlmm-hapmap" />
25 <output name="snp_info" file="hapmap2mlmm-result_snp.hapmap" />
26 <output name="genot" file="hapmap2mlmm-result_genot" />
27 </test>
28 </tests>
29 <help>
30
31
32
33
34 .. class:: infomark
35
36 **Authors** Dereeper Alexis (alexis.dereeper@ird.fr), IRD, South Green platform
37
38 | **Please cite** "SNiPlay3: a web-based application for exploration and large scale analyses of genomic variations", **Dereeper A. et al.**, Nucl. Acids Res. (1 july 2015) 43 (W1).
39
40 .. class:: infomark
41
42 **Galaxy integration** South Green.
43
44 ---------------------------------------------------
45
46
47 =================
48 HapmapToMLMMFiles
49 =================
50
51 -----------
52 Description
53 -----------
54
55 | HapmapToMLMMFiles converts a hapmap file into input files compatible with the MLMM software.
56
57
58 -----------------
59 Workflow position
60 -----------------
61
62 **Upstream tool**
63
64 =============== ====================== ===========
65 Name output file(s) format
66 =============== ====================== ===========
67 VCF to Hapmap Fasta alignment fasta
68 =============== ====================== ===========
69
70
71 **Downstream tool**
72
73 =========== ========================== =======
74 Name input file(s) format
75 =========== ========================== =======
76 MLMM
77 =========== ========================== =======
78
79
80
81 ----------
82 Input file
83 ----------
84
85 Hapmap file
86 Allelic file in Hapmap format
87
88
89
90 ------------
91 Output files
92 ------------
93
94 SNP Info file
95
96 Genotyping file for MLMM
97
98
99
100 ---------------------------------------------------
101
102 ---------------
103 Working example
104 ---------------
105
106 Input files
107 ===========
108
109 Hapmap file
110 -----------
111
112 ::
113
114 rs# alleles chrom pos strand assembly# center protLSID assayLSID panel QCcode Ind1 Ind2
115 SNP1 A/T 1 3102 + assembly NA NA NA speciesname NA AA AA AA
116 SNP2 A/T 1 4648 + assembly NA NA NA speciesname NA AA AA AA
117
118
119 Output files
120 ============
121
122 SNP Info file
123 -------------
124
125 ::
126
127 SNP Chr Pos
128 SNP1 1 3102
129 SNP2 1 4648
130 SNP3 1 7601
131
132
133 Genotyping file for MLMM
134 ------------------------
135
136 ::
137
138 Ind_id SNP1 SNP2 SNP3 SNP4 SNP5 SNP6 SNP7 SNP8 SNP9 SNP10 SNP11 SNP12 SNP13 SNP14
139 Ind1 0 0 0 0 0 0 2 0 2 0 0 0 2 0
140 Ind2 0 0 0 0 0 2 2 0 0 0 0 0 0 0
141
142
143 </help>
144 <citations>
145 <!-- [HELP] As DOI or BibTex entry -->
146 <citation type="bibtex">@article{Dereeper03062015,
147 author = {Dereeper, Alexis and Homa, Felix and Andres, Gwendoline and Sempere, Guilhem and Sarah, Gautier and Hueber, Yann and Dufayard, Jean-François and Ruiz, Manuel},
148 title = {SNiPlay3: a web-based application for exploration and large scale analyses of genomic variations},
149 year = {2015},
150 doi = {10.1093/nar/gkv351},
151 abstract ={SNiPlay is a web-based tool for detection, management and analysis of genetic variants including both single nucleotide polymorphisms (SNPs) and InDels. Version 3 now extends functionalities in order to easily manage and exploit SNPs derived from next generation sequencing technologies, such as GBS (genotyping by sequencing), WGRS (whole gre-sequencing) and RNA-Seq technologies. Based on the standard VCF (variant call format) format, the application offers an intuitive interface for filtering and comparing polymorphisms using user-defined sets of individuals and then establishing a reliable genotyping data matrix for further analyses. Namely, in addition to the various scaled-up analyses allowed by the application (genomic annotation of SNP, diversity analysis, haplotype reconstruction and network, linkage disequilibrium), SNiPlay3 proposes new modules for GWAS (genome-wide association studies), population stratification, distance tree analysis and visualization of SNP density. Additionally, we developed a suite of Galaxy wrappers for each step of the SNiPlay3 process, so that the complete pipeline can also be deployed on a Galaxy instance using the Galaxy ToolShed procedure and then be computed as a Galaxy workflow. SNiPlay is accessible at http://sniplay.southgreen.fr.},
152 URL = {http://nar.oxfordjournals.org/content/early/2015/06/03/nar.gkv351.abstract},
153 eprint = {http://nar.oxfordjournals.org/content/early/2015/06/03/nar.gkv351.full.pdf+html},
154 journal = {Nucleic Acids Research}
155 }
156
157 </citation>
158
159 </citations>
160 </tool>