Galaxy | Tool Preview

GEMINI load (version 0.20.1+galaxy2)
Only build 37 (aka hg19) of the human genome is supported.
GEMINI can parse and use annotations generated with either snpEff (both 'EFF'- and 'ANN'-style annotations are supported) or VEP. You can also load unannotated variants, but most of GEMINI's functionality will not be available or not be very useful without annotations.
This is usually the case, but some published datasets, like some 1000G VCFs, are missing genotype information.
The pedigree dataset is optional, but several GEMINI tools require the relationship between samples (i.e., the family structure) and/or the sample phenotype to be defined. The PED format is a simple tabular format (see the tool help below for details). If you choose to not provide sample information now, but later find that you need it for your analysis, you can also add it to an existing GEMINI database by using the GEMINI amend tool.
The preselected defaults should be ok for most use cases (feel free to enable CADD scores for non-commercial use). If you are not interested in certain annotations, you can speed up database creation and decrease the resulting database size slightly by not loading them into the database. Note: GERP and CADD scores are optional parts of the annotation source and can only be loaded if available.

CADD scores licensing

CADD scores are freely available for non-commercial applications only. Make sure you contact the developers before using them in any commercial application.


What it does

Before we can use GEMINI to explore genetic variation, we must first load the variant information stored in VCF format into the GEMINI database framework.

To fully leverage the power of GEMINI, you should first annotate your VCF dataset with the functional consequences of the variants using either VEP or snpEff.

To avoid problems during annotation, but also during later variant queries with GEMINI tools, it is good practice to preprocess your VCF dataset even before annoation to split records with multiple alternate alleles, and to left-align and trim indels. The authors of GEMINI recommend the tool vt for this purpose, an equivalently good option is bcftools norm, and Galaxy wrappers exist for both tools.

In addition, you are encouraged to provide family and sample phenotype information in PED format, if you are planning to use GEMINI for any kind of variant identification based on inheritance patterns.

A PED file is simply a tabular text file (columns can be separated by either spaces or TABs, but not a mixture of the two within the same file) with the header:

#family_id    name     paternal_id    maternal_id    sex    phenotype

and optional additional columns. The actual column names in the header are not fixed, but there have to be at least six columns that are interpreted as detailed next.

Subsequent lines describe one sample from the VCF input dataset each, where

Here are two examples of valid PED file contents:

#family_id    name    paternal_id    maternal_id    sex    phenotype    hair_color
1             M10475  -9             -9             1      1            brown
1             M10478  M10475         M10500         2      2            brown
1             M10500  -9             -9             2      2            black
1             M128215 M10475         M10500         1      1            blue

This describes a family with two kids, in which mother and daughter, but not father and son are phenotypically affected. The file also stores the hair color of all family members.

#family_id    name         paternal_id    maternal_id    sex    phenotype
0             M10475       0              0              -1     1
0             M10478       0              0              -1     2
0             M10500       0              0              -1     2
0             M128215      0              0              -1     1

This describes the same samples as above, but without recording family structure, sex or additional traits. Only the sample phenotypes are provided. In this case (no extra columns), the header line could be omitted.