annotate gemma.xml @ 1:cd8c5aebb404 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit d64fadb1f41a602ea4fcec8f26ab18a4f92b8c90
author iuc
date Mon, 27 Oct 2025 09:26:46 +0000
parents 14d48fd8f343
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
1 <tool id="gemma" name="GEMMA Analysis" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.0">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
2 <description>Run association tests and kinship analysis with GEMMA</description>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
3 <macros>
1
cd8c5aebb404 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit d64fadb1f41a602ea4fcec8f26ab18a4f92b8c90
iuc
parents: 0
diff changeset
4 <token name="@TOOL_VERSION@">0.98.5</token>
0
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
5 <token name="@VERSION_SUFFIX@">0</token>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
6 </macros>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
7 <requirements>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
8 <requirement type="package" version="@TOOL_VERSION@">gemma</requirement>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
9 </requirements>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
10
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
11 <command detect_errors="aggressive"><![CDATA[
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
12
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
13 ln -s '$bed.extra_files_path'/*.bed input.bed &&
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
14 ln -s '$bed.extra_files_path'/*.bim input.bim &&
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
15 ln -s '$bed.extra_files_path'/*.fam input.fam &&
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
16
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
17 #if $lmm_inputs.analysis == "lmm"
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
18 gemma -bfile input -k '$lmm_inputs.kinship' -lmm 1 -o gemmarun 2>&1;
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
19 cp ./output/gemmarun.assoc.txt '$gemma_output';
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
20 awk -F'\t' 'BEGIN {OFS="\t"} {print $1, $3, $3, $2, $4, $5, $6, $7, $8, $9, $10, $11, $12}' '$gemma_output' > '$gemma_output_int';
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
21 #elif $lmm_inputs.analysis == "gk"
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
22 gemma -bfile input -gk 1 -o gemmarun 2>&1;
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
23 cp ./output/gemmarun.cXX.txt '$gemma_output';
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
24 #else
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
25 gemma -bfile input -lm 1 -o gemmarun 2>&1;
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
26 cp ./output/gemmarun.assoc.txt '$gemma_output';
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
27 awk -F'\t' 'BEGIN {OFS="\t"} {print $1, $3, $3, $2, $4, $5, $6, $7, $8, $9, $10, $11, $12}' '$gemma_output' > '$gemma_output_int';
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
28 #end if
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
29 ]]> </command>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
30 <inputs>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
31 <param name="bed" type="data" format="pbed" label="Input PLINK dataset"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
32 <conditional name="lmm_inputs">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
33 <param name="analysis" type="select" label="Type of analysis to perform">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
34 <option value="lm">Linear Model (LM)</option>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
35 <option value="lmm">Linear Mixed Model (LMM)</option>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
36 <option value="gk">Kinship (Genetic Relationship Matrix)</option>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
37 </param>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
38 <when value="lmm">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
39 <param name="kinship" type="data" format="tsv,tabular" label="Kinship Matrix File" />
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
40 </when>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
41 <when value="lm"></when>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
42 <when value="gk"></when>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
43 </conditional>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
44 </inputs>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
45 <outputs>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
46 <data name="gemma_output" format="tsv" label="GEMMA output file"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
47 <data name="gemma_output_int" format="interval" label="GEMMA output file interval">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
48 <filter>lmm_inputs['analysis'] != 'gk'</filter>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
49 </data>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
50 </outputs>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
51 <tests>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
52 <test expect_num_outputs="2">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
53 <param name="lmm_inputs|analysis" value="lm" />
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
54 <param name="bed" ftype="pbed" value="">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
55 <composite_data value="rgenetics.bim"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
56 <composite_data value="rgenetics.bed"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
57 <composite_data value="rgenetics.fam"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
58 </param>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
59 <output name="gemma_output" file="lm_output.tsv"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
60 <output name="gemma_output_int" file="lm_output.interval"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
61 </test>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
62 <test expect_num_outputs="1">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
63 <param name="lmm_inputs|analysis" value="gk" />
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
64 <param name="bed" ftype="pbed" value="">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
65 <composite_data value="rgenetics.bim"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
66 <composite_data value="rgenetics.bed"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
67 <composite_data value="rgenetics.fam"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
68 </param>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
69 <output name="gemma_output" file="test_kinship_matrix.tsv"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
70 </test>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
71 <test expect_num_outputs="2">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
72 <param name="lmm_inputs|analysis" value="lmm" />
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
73 <param name="bed" ftype="pbed" value="">
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
74 <composite_data value="rgenetics.bim"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
75 <composite_data value="rgenetics.bed"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
76 <composite_data value="rgenetics.fam"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
77 </param>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
78 <param name="lmm_inputs|kinship" value="test_kinship_matrix.tsv" />
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
79 <output name="gemma_output" file="lmm_output.tsv"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
80 <output name="gemma_output_int" file="lmm_output.interval"/>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
81 </test>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
82 </tests>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
83 <help>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
84
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
85 This tool runs various GEMMA analyses. Choose from:
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
86 - LM: Linear Model for association testing.
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
87 - LMM: Linear Mixed Model for association testing with relatedness (requires a kinship matrix).
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
88 - GK: Kinship calculation (genetic relationship matrix).
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
89
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
90 Provide a PLINK binary dataset as input. For LMM, also provide a precomputed kinship matrix.
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
91 For lm/lmm analysis, the tool applies the Wald test.
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
92 </help>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
93 <citations>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
94 <citation type="doi">10.1038/ng.2310</citation>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
95 </citations>
14d48fd8f343 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemma commit cb5c00e8251af92f0b88674cdda0821cf8bdb824
iuc
parents:
diff changeset
96 </tool>