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

org.dishevelled.bio.variant.vcf.header.VcfMetaHeaderLine Maven / Gradle / Ivy

The newest version!
/*

    dsh-bio-variant  Variants.
    Copyright (c) 2013-2024 held jointly by the individual authors.

    This library is free software; you can redistribute it and/or modify it
    under the terms of the GNU Lesser General Public License as published
    by the Free Software Foundation; either version 3 of the License, or (at
    your option) any later version.

    This library is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; with out even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
    License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with this library;  if not, write to the Free Software Foundation,
    Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA.

    > http://www.fsf.org/licensing/licenses/lgpl.html
    > http://www.opensource.org/licenses/lgpl-license.php

*/
package org.dishevelled.bio.variant.vcf.header;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;

import static org.dishevelled.bio.variant.vcf.header.VcfHeaderLineParser.optionalNumber;
import static org.dishevelled.bio.variant.vcf.header.VcfHeaderLineParser.optionalType;
import static org.dishevelled.bio.variant.vcf.header.VcfHeaderLineParser.parseEntries;
import static org.dishevelled.bio.variant.vcf.header.VcfHeaderLineParser.requiredString;

import java.util.Map;

import javax.annotation.concurrent.Immutable;

import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.ImmutableListMultimap;
import com.google.common.collect.ListMultimap;

/**
 * VCF META header line.
 *
 * @author  Michael Heuer
 */
@Immutable
public final class VcfMetaHeaderLine {
    /** Header line ID. */
    private final String id;

    /** META header line number. */
    private final VcfHeaderLineNumber number;

    /** META header line type. */
    private final VcfHeaderLineType type;

    /** Header line attributes. */
    private final ListMultimap attributes;


    /**
     * Create a new VCF META header line.
     *
     * @param id header line ID, must not be null
     * @param number META header line number, if any
     * @param type META header line type, if any
     * @param attributes header line attributes, must not be null
     */
    VcfMetaHeaderLine(final String id,
                      final VcfHeaderLineNumber number,
                      final VcfHeaderLineType type,
                      final ListMultimap attributes) {
        checkNotNull(id);
        checkNotNull(attributes);

        this.id = id;
        this.number = number;
        this.type = type;
        this.attributes = ImmutableListMultimap.copyOf(attributes);
    }


    /**
     * Return the ID for this VCF META header line.
     *
     * @return the ID for this VCF META header line
     */
    public String getId() {
        return id;
    }

    /**
     * Return the number for this VCF META header line.
     *
     * @return the number for this VCF META header line
     */
    public VcfHeaderLineNumber getNumber() {
        return number;
    }

    /**
     * Return the type for this VCF META header line.
     *
     * @return the type for this VCF META header line
     */
    public VcfHeaderLineType getType() {
        return type;
    }

    /**
     * Return the attributes for this VCF META header line.
     *
     * @return the attributes for this VCF META header line
     */
    public ListMultimap getAttributes() {
        return attributes;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("##META=");
        return sb.toString();
    }

    /**
     * Parse the specified value into a VCF META header line.
     *
     * @param value value, must not be null
     * @return the specified value parsed into a VCF META header line
     */
    public static VcfMetaHeaderLine valueOf(final String value) {
        checkNotNull(value);
        checkArgument(value.startsWith("##META="));
        ListMultimap entries = parseEntries(value.replace("##META=", ""));

        String id = requiredString("ID", entries);
        VcfHeaderLineNumber number = optionalNumber("Number", entries);
        VcfHeaderLineType type = optionalType("Type", entries);

        ListMultimap attributes = ArrayListMultimap.create(entries);
        attributes.removeAll("ID");
        attributes.removeAll("Number");
        attributes.removeAll("Type");

        return new VcfMetaHeaderLine(id, number, type, attributes);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy