Difference between revisions of "DosageConvertor"

From Genome Analysis Wiki
Jump to navigationJump to search
Line 45: Line 45:
 
== Convert to PLINK Files ==
 
== Convert to PLINK Files ==
  
The following command line should convert a input VCF dosage file to a PLINK dosage file that can be tested for association in PLINK1.07, PLINK1.9, PLINK2.0.  
+
The following command line should convert a input VCF dosage file to a PLINK dosage file that can be tested for association in [https://www.cog-genomics.org/plink2 PLINK1.9] or [https://www.cog-genomics.org/plink/2.0/ PLINK2.0].  
  
 
  ./DosageConvertor        --vcfDose      TestDataImputedVCF.dose.vcf.gz
 
  ./DosageConvertor        --vcfDose      TestDataImputedVCF.dose.vcf.gz
                           --info        TestDataImputedVCF.info (NOT mandatory)
+
                           --info        TestDataImputedVCF.info         (NOT mandatory)
 
                           --prefix      OutPrefix
 
                           --prefix      OutPrefix
                           --type        plink
+
                           --type        plink                           (default)
                           --format      1
+
                           --format      1                               (or 2,3)
  
This command line would create three files :  <code> OutPrefix.plink.dosage.gz, OutPrefix.fam, OutPrefix.map </code>. The <code>--format</code> parameter can take values 1, 2 and 3. Each of these values correspond to the three different formats available for PLINK dosage files (details on PLINK dosage files are given [http://www.cog-genomics.org/plink/1.9/assoc#dosage here]). Note that the generated <code>OutPrefix.map</code> does NOT contain any phenotype information (which needs to be manually edited before PLINK can run association testing).
+
This command line would create three files :  <code> OutPrefix.plink.dosage.gz, OutPrefix.fam, OutPrefix.map</code>. The <code>.fam</code> and <code>.map</code> formats have been described [http://zzz.bwh.harvard.edu/plink/data.shtml#map here]. The <code>--format</code> parameter can take values 1, 2 and 3. Each of these values correspond to the three different formats available for PLINK dosage files (details on PLINK dosage files are given [http://www.cog-genomics.org/plink/1.9/assoc#dosage here]). Note that the generated <code>OutPrefix.map</code> does NOT contain any phenotype information (which needs to be manually edited before PLINK can run association testing). The <code>OutPrefix.fam</code> does NOT contain sex information unless chromosome X is available. See [[#Converting Chromosome X Files]] for more details.
  
 
== Convert to MaCH Files ==
 
== Convert to MaCH Files ==

Revision as of 17:46, 11 July 2017

  • Download/Re-Clone Release Version 1.0.4 !!! (Updated July 2017) !!!

Introduction

DosageConvertor is a C++ tool to convert dosage files (in VCF format) from Minimac3/4 to other formats such as MaCH or PLINK.

Download

VERSION: 1.0.4 (Updated 7.12.2017) !!!

[NOTE: Cloning from GitHub is recommened so that updates can be easily pulled back]

Description Download Link
Github Repository

DosageConvertor - Github

Source Files

UNIX Users

Binary Executable

UNIX Users

Binary executables are NOT guaranteed to run on every LINUX machine. Please compile from source files if you have trouble with the executable, or clone from the github repository. Else contact the author Sayantan Das.

Usage

Users should follow the following steps to compile DosageConvertor (if they downloaded the source files).

## EXTRACT M3VCFTOOLS AND COMPILE
 
wget ftp://share.sph.umich.edu/minimac3/DosageConvertor/DosageConvertor.v1.0.3.tar.gz
tar -xzvf DosageConvertor.v1.0.3.tar.gz
cd DosageConvertor/
make

Convert to PLINK Files

The following command line should convert a input VCF dosage file to a PLINK dosage file that can be tested for association in PLINK1.9 or PLINK2.0.

./DosageConvertor         --vcfDose      TestDataImputedVCF.dose.vcf.gz
                          --info         TestDataImputedVCF.info          (NOT mandatory)
                          --prefix       OutPrefix
                          --type         plink                            (default)
                          --format       1                                (or 2,3)

This command line would create three files : OutPrefix.plink.dosage.gz, OutPrefix.fam, OutPrefix.map. The .fam and .map formats have been described here. The --format parameter can take values 1, 2 and 3. Each of these values correspond to the three different formats available for PLINK dosage files (details on PLINK dosage files are given here). Note that the generated OutPrefix.map does NOT contain any phenotype information (which needs to be manually edited before PLINK can run association testing). The OutPrefix.fam does NOT contain sex information unless chromosome X is available. See #Converting Chromosome X Files for more details.

Convert to MaCH Files

The following command line should convert a input VCF dosage file to a MaCH/minimac dosage file (the format that available in the earlier version of [Minimac minimac]). The generated dosage files can be tested for association using mach2dat.

./DosageConvertor         --vcfDose      TestDataImputedVCF.dose.vcf.gz
                          --info         TestDataImputedVCF.info (NOT mandatory)
                          --prefix       OutPrefix
                          --type         plink
                          --format       1

This command line would create three files : OutPrefix.plink.dosage.gz, OutPrefix.fam, OutPrefix.map . The --format parameter can take values 1, 2 and 3. Each of these values correspond to the three different formats available for PLINK dosage files (details on PLINK dosage files are given here). Note that the generated OutPrefix.map does NOT contain any phenotype information (which needs to be manually edited before PLINK can run association testing).


The command options for DosageConvertor are explained below.

  • "--vcfDose" is a mandatory parameter requiring the input VCF file.
  • "--info" denotes the info file from the same imputation output. This parameter is NOT mandatory, but if NO info file is provided, the output MaCH info file will have some missing columns.
  • "--prefix" denotes the output file prefix (default value: Converted.Dosage).
  • "--type" denotes the output file format (available handles: mach (default) and plink).
  • "--format" decides whether to import imputed values from dosage (DS) or genotype probabilities (GP) of the input VCF file (available handles: DS (default) and GP).
  • "--buffer" denotes the number of markers to import at a time (valid only for MaCH format) (default value 10000).
  • "--idDelimiter " denotes the delimiter to Split VCF Sample ID into FID and IID for PLINK format (default value _).
Usage: ./DosageConvertor  --vcfDose      TestDataImputedVCF.dose.vcf.gz
                          --info         TestDataImputedVCF.info
                          --prefix       OutputFilePrefix
                          --type         plink OR mach   // depending on output format
                          --format       DS or GP        // based on if you want to output
                                                         // dosage (DS) or genotype prob (GP)
                          --buffer       10000           // Number of Markers to import and
                                                         // print at a time (valid only for
                                                         // MaCH format)
                          --idDelimiter  _               // Delimiter to Split VCF Sample ID into
                                                         // FID and IID for PLINK format

Contact

In case of any queries and bugs please contact Sayantan Das.