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

picard.illumina.parser.Tile Maven / Gradle / Ivy

Go to download

A set of command line tools (in Java) for manipulating high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF.

There is a newer version: 3.2.0
Show newest version
/*
 * The MIT License
 *
 * Copyright (c) 2014 The Broad Institute
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package picard.illumina.parser;

import htsjdk.samtools.util.CollectionUtil;

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.EnumMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

/** Represents a tile from TileMetricsOut.bin. Stores information on location (lane & tile #, density, number of clusters and the
 * phasing/prephasing values associated with this tile
 *
 * @author jgentry
 */
public class Tile {
    private final int lane, tile;
    private final float density, clusters;

    private final Map phasingMap;
    private final Map prePhasingMap;

    /**
     * @param tilePhasingValues Either one or two TilePhasingValues, corresponding to the FIRST and potentially SECOND template reads
     */
    public Tile(final int lane, final int tile, final float density, final float clusters, final TilePhasingValue... tilePhasingValues) {
        this.lane = lane;
        this.tile = tile;
        this.density = density;
        this.clusters = clusters;

        final Collection phasingValues = ensureSoleTilePhasingValuesPerRead(Arrays.asList(tilePhasingValues));

        final Map phasingMap = new EnumMap(TileTemplateRead.class);
        final Map prePhasingMap = new EnumMap(TileTemplateRead.class);

        /** For each of the TileReads, assign their phasing & prephasing values to the respective maps, which we will
         * use later to calculate the medians
         */
        for (final TilePhasingValue phasingValue : phasingValues) {
            phasingMap.put(phasingValue.getTileTemplateRead(), phasingValue.getPhasingValue());
            prePhasingMap.put(phasingValue.getTileTemplateRead(), phasingValue.getPrePhasingValue());
        }

        this.phasingMap = Collections.unmodifiableMap(phasingMap);
        this.prePhasingMap = Collections.unmodifiableMap(prePhasingMap);
    }

    /** Returns the number of this tile's parent lane. */
    public int getLaneNumber() {
        return lane;
    }

    /** Returns the number/name of this tile. */
    public int getTileNumber() {
        return tile;
    }

    /** Returns the cluster density of this tile, in units of [cluster/mm^2]. */
    public float getClusterDensity() {
        return density;
    }

    /** Returns the number of on this tile. */
    public float getClusterCount() {
        return clusters;
    }

    public Map getPhasingMap() {
        return phasingMap;
    }

    public Map getPrePhasingMap() {
        return prePhasingMap;
    }

    /** For any given TileTemplateRead, we want to make sure that there is only a single TilePhasingValue */
    private static Collection ensureSoleTilePhasingValuesPerRead(final Collection tilePhasingValues) {
        final Map> partitionedMap =
                tilePhasingValues.stream().collect(Collectors.groupingBy(TilePhasingValue::getTileTemplateRead));

        final Collection newTilePhasingValues = new LinkedList<>();
        for (final TileTemplateRead read : partitionedMap.keySet()) {
            newTilePhasingValues.add(CollectionUtil.getSoleElement(partitionedMap.get(read)));
        }

        return newTilePhasingValues;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy