All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.broadinstitute.hellbender.utils.samples.PedReader Maven / Gradle / Ivy

There is a newer version: 4.6.0.0
Show newest version
package org.broadinstitute.hellbender.utils.samples;

import java.io.*;
import java.util.*;
import java.util.stream.IntStream;

import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import org.broadinstitute.barclay.argparser.CommandLineException;
import org.broadinstitute.hellbender.exceptions.GATKException;
import org.broadinstitute.hellbender.exceptions.UserException;
import org.broadinstitute.hellbender.utils.text.XReadLines;

/**
 * Reads PED file-formatted tabular text files
 *
 * See http://www.broadinstitute.org/mpg/tagger/faq.html
 * See http://pngu.mgh.harvard.edu/~purcell/plink/data.shtml#ped
 *
 * The "ped" file format refers to the widely-used format for linkage pedigree data.
 * Each line describes a single (diploid) individual in the following format:
 *
 *      family_ID individual_ID father_ID mother_ID gender phenotype genotype_1 genotype_2 ...
 *
 * If your data lacks pedigree information (for example, unrelated case/control individuals),
 * set the father_ID and mother_ID to 0. sex denotes the individual's gender with 1=male and 2=female.
 * phenotype refers to the affected status (for association studies) where 0=unknown, 1=unaffected, 2=affected.
 * Finally, each genotype is written as two (=diploid) integer numbers (separated by whitespace),
 * where 1=A, 2=C, 3=G, 4=T. No header lines are allowed and all columns must be separated by whitespace.
 * Check out the information at the PLINK website on the "ped" file format.
 *
 * The PED file is a white-space (space or tab) delimited file: the first six columns are mandatory:
 *  Family ID
 *  Individual ID
 *  Paternal ID
 *  Maternal ID
 *  Sex (1=male; 2=female; other=unknown)
 *  Phenotype
 *
 *  The IDs are alphanumeric: the combination of family and individual ID should uniquely identify a person.
 *  A PED file must have 1 and only 1 phenotype in the sixth column. The phenotype can be either a
 *  quantitative trait or an affection status column: PLINK will automatically detect which type
 *  (i.e. based on whether a value other than 0, 1, 2 or the missing genotype code is observed).
 *  Note that the GATK actually supports arbitrary values for quantitative trait -- not just doubles --
 *  and are actually representing these values as strings instead of doubles
 *
 *  NOTE Quantitative traits with decimal points must be coded with a period/full-stop character and
 *  not a comma, i.e. 2.394 not 2,394
 *
 *  If an individual's sex is unknown, then any character other than 1 or 2 can be used.
 *  When new files are created (PED, FAM, or other which contain sex) then the original coding will be
 *  preserved. However, these individuals will be dropped from any analyses (i.e. phenotype set to missing also)
 *  and an error message will arise if an analysis that uses family information is requested and an
 *  individual of 'unknown' sex is specified as a father or mother.
 *
 *
 *  HINT You can add a comment to a PED or MAP file by starting the line with a # character. The rest of that
 *  line will be ignored. Do not start any family IDs with this character therefore.
 *
 *  Affection status, by default, should be coded:
 *  -9 missing
 *   0 missing
 *   1 unaffected
 *   2 affected
 *
 * If your file is coded 0/1 to represent unaffected/affected, then use the --1 flag:
 * plink --file mydata --1 which will specify a disease phenotype coded:
 *
 *  -9 missing
 *  0 unaffected
 *  1 affected
 *
 * The missing phenotype value for quantitative traits is, by default, -9 (this can also be used for
 * disease traits as well as 0). It can be reset by including the --missing-phenotype option:
 *
 * Genotypes (column 7 onwards) should also be white-space delimited; they can be any character
 * (e.g. 1,2,3,4 or A,C,G,T or anything else) except 0 which is, by default, the missing genotype
 * character. All markers should be biallelic. All SNPs (whether haploid or not) must have two
 * alleles specified. Either Both alleles should be missing (i.e. 0) or neither.
 *
 * No header row should be given. For example, here are two individuals typed for 3 SNPs (one row = one person):
 *
 *   FAM001  1  0 0  1  2  A A  G G  A C
 *   FAM001  2  0 0  1  2  A A  A G  0 0
 *   ...
 *
 * Note that the GATK does not support genotypes in a PED file.
 *
 * @author Mark DePristo
 * @since 2011
 */
public final class PedReader {
    private static final Logger logger = LogManager.getLogger(PedReader.class);
    final static private String commentMarker = "#";

    /**
     * An enum that specifies which, if any, of the standard PED fields are
     * missing from the input records.  For example, suppose we have the full record:
     *
     * "fam1 kid dad mom 1 2"
     *
     * indicating a male affected child.  This can be parsed with the -ped x.ped argument
     * to the GATK.  Suppose we only have:
     *
     * "fam1 kid 1"
     *
     * we can parse the reduced version of this record with -ped:NO_PARENTS,NO_PHENOTYPE x.ped
     */
    public enum MissingPedField {
        /**
         * The PED records do not have the first (FAMILY_ID) argument.  The family id
         * will be set to null / empty.
         */
        NO_FAMILY_ID,

        /**
         * The PED records do not have either the paternal or maternal IDs, so
         * the corresponding IDs are set to null.
         */
        NO_PARENTS,

        /**
         * The PED records do not have the GENDER field, so the sex of each
         * sample will be set to UNKNOWN.
         */
        NO_SEX,

        /**
         * The PED records do not have the PHENOTYPE field, so the phenotype
         * of each sample will be set to UNKNOWN.
         */
        NO_PHENOTYPE
    }

    protected enum Field {
        FAMILY_ID, INDIVIDUAL_ID, PATERNAL_ID, MATERNAL_ID, GENDER, PHENOTYPE
    }

    // phenotype
    private final static String MISSING_VALUE1 = "-9";
    private final static String MISSING_VALUE2 = "0";
    private final static String PHENOTYPE_UNAFFECTED = "1";
    private final static String PHENOTYPE_AFFECTED = "2";

    // Sex
    private final static String SEX_MALE = "1";
    private final static String SEX_FEMALE = "2";
    // other=unknown

    final static private Set CATAGORICAL_TRAIT_VALUES = new LinkedHashSet<>(Arrays.asList(
                                        MISSING_VALUE1, MISSING_VALUE2, PHENOTYPE_UNAFFECTED, PHENOTYPE_AFFECTED));

    public PedReader() { }

    public final List parse(File source, EnumSet missingFields, SampleDB sampleDB) throws FileNotFoundException {
        logger.info("Reading PED file " + source + " with missing fields: " + missingFields);
        return parse(new FileReader(source), missingFields, sampleDB);
    }

    public final List parse(final String source, EnumSet missingFields, SampleDB sampleDB) {
        logger.warn("Reading PED string: \"" + source + "\" with missing fields: " + missingFields);
        return parse(new StringReader(source.replace(";", String.format("%n"))), missingFields, sampleDB);
    }

    private List splitLines(Reader reader, List lines, int nExpectedFields) {
        int lineNo = 1;
        final List splits = new ArrayList<>(lines.size());
        for (final String line : lines) {
            if (line.startsWith(commentMarker) || line.trim().equals("")) {
                continue;
            }
            final String[] parts = line.split("\\s+");
            if (parts.length != nExpectedFields) {
                throw new UserException(reader.toString() + "Bad PED line " + lineNo + ": wrong number of fields");
            }
            splits.add(parts);
            lineNo++;
        }
        return splits;
    }

    private boolean isQT(List lineParts, int phenotypePos) {
        boolean isQT = false;
        for (final String[] parts : lineParts) {
            if (phenotypePos != -1) {
                isQT = isQT || !CATAGORICAL_TRAIT_VALUES.contains(parts[phenotypePos]);
            }
        }
        logger.info("Phenotype is other? " + isQT);
        return isQT;
    }

    private Sex determineSex(String[] parts, int sexPos) {
        Sex gender = Sex.UNKNOWN;
        if (sexPos != -1) {
            switch (parts[sexPos]) {
                case SEX_MALE:
                    gender = Sex.MALE;
                    break;
                case SEX_FEMALE:
                    gender = Sex.FEMALE;
                    break;
                default:
                    gender = Sex.UNKNOWN;
                    break;
            }
        }
        return gender;
    }

    public final List parse(Reader reader, EnumSet missingFields, SampleDB sampleDB) {

        // Determine field position ordinals
        final int familyPos = missingFields.contains(MissingPedField.NO_FAMILY_ID) ? -1 : 0;
        final int samplePos = familyPos + 1;
        final int paternalPos = missingFields.contains(MissingPedField.NO_PARENTS) ? -1 : samplePos + 1;
        final int maternalPos = missingFields.contains(MissingPedField.NO_PARENTS) ? -1 : paternalPos + 1;
        final int sexPos = missingFields.contains(MissingPedField.NO_SEX) ? -1 : Math.max(maternalPos, samplePos) + 1;
        final int phenotypePos = missingFields.contains(MissingPedField.NO_PHENOTYPE) ? -1 : Math.max(sexPos, Math.max(maternalPos, samplePos)) + 1;
        final int nExpectedFields = IntStream.of(samplePos, paternalPos, maternalPos, sexPos, phenotypePos).max().getAsInt() + 1;

        List lines;
        try (final XReadLines sourceReader = new XReadLines(reader, false, commentMarker)) {
            lines = sourceReader.readLines();
        }
        catch (IOException e) {
            throw new UserException.CouldNotReadInputFile("Error reading pedigree input");
        }

        final List lineParts = splitLines(reader, lines, nExpectedFields);
        boolean isQT = isQT(lineParts, phenotypePos);

        int lineNo = 1;
        final List samples = new ArrayList<>(lineParts.size());
        for (final String[] parts : lineParts) {
            String individualID = parts[samplePos];
            String familyID = familyPos == -1 ? null : maybeMissing(parts[familyPos]);
            String paternalID = paternalPos == -1 ? null : maybeMissing(parts[paternalPos]);
            String maternalID = maternalPos == -1 ? null : maybeMissing(parts[maternalPos]);
            Sex sex = determineSex(parts, sexPos);

            Affection affection = Affection.UNKNOWN;
            String quantitativePhenotype = null;
            if (phenotypePos != -1) {
                if (isQT) {
                    if (parts[phenotypePos].equals(MISSING_VALUE1)) {
                        affection = Affection.UNKNOWN;
                    }
                    else {
                        affection = Affection.OTHER;
                        quantitativePhenotype = parts[phenotypePos];
                    }
                }
                else {
                    switch (parts[phenotypePos]) {
                        case MISSING_VALUE1:
                            affection = Affection.UNKNOWN;
                            break;
                        case MISSING_VALUE2:
                            affection = Affection.UNKNOWN;
                            break;
                        case PHENOTYPE_UNAFFECTED:
                            affection = Affection.UNAFFECTED;
                            break;
                        case PHENOTYPE_AFFECTED:
                            affection = Affection.AFFECTED;
                            break;
                        default:
                            throw new GATKException("Unexpected phenotype type " + parts[phenotypePos] + " at line " + lineNo);
                    }
                }
            }

            final Sample s = new Sample(individualID, familyID, paternalID, maternalID, sex, affection);
            samples.add(s);
            sampleDB.addSample(s);
            lineNo++;
        }

        for (final Sample sample : new ArrayList<>(samples)) {
            final Sample dad = maybeAddImplicitSample(sampleDB, sample.getPaternalID(), sample.getFamilyID(), Sex.MALE);
            if (dad != null) {
                samples.add(dad);
            }
            final Sample mom = maybeAddImplicitSample(sampleDB, sample.getMaternalID(), sample.getFamilyID(), Sex.FEMALE);
            if (mom != null) {
                samples.add(mom);
            }
        }
        return samples;
    }

    private static String maybeMissing(final String string) {
        if (string.equals(MISSING_VALUE1) || string.equals(MISSING_VALUE2))
            return null;
        else
            return string;
    }

    private Sample maybeAddImplicitSample(SampleDB sampleDB, final String id, final String familyID, final Sex gender) {
        if (id != null && sampleDB.getSample(id) == null) {
            Sample s = new Sample(id, familyID, null, null, gender);
            sampleDB.addSample(s);
            return s;
        }
        else {
            return null;
        }
    }

    /**
     * Parses a list of tags from the command line, assuming it comes from the GATK Engine
     * tags, and returns the corresponding EnumSet.
     *
     * @param arg the actual engine arg, used for the UserException if there's an error
     * @param tags a list of string tags that should be converted to the MissingPedField value
     * @return Set of parsed tags that are missing from the ped file
     */
    public static EnumSet parseMissingFieldTags(final Object arg, final List tags) {
        final EnumSet missingFields = EnumSet.noneOf(MissingPedField.class);

        for (final String tag : tags) {
            try {
                missingFields.add(MissingPedField.valueOf(tag));
            } catch ( IllegalArgumentException e ) {
                throw new CommandLineException.BadArgumentValue(arg.toString(), "Unknown tag " + tag + " allowed values are " + MissingPedField.values());
            }
        }

        return missingFields;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy