org.dishevelled.bio.feature.BedReader Maven / Gradle / Ivy
/*
dsh-bio-feature Sequence features.
Copyright (c) 2013-2018 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.feature;
import static com.google.common.base.Preconditions.checkNotNull;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
import com.google.common.io.CharStreams;
import com.google.common.io.LineProcessor;
/**
* BED format reader.
*
* @author Michael Heuer
*/
public final class BedReader {
/**
* Private no-arg constructor.
*/
private BedReader() {
// empty
}
/**
* Read zero or more BED records from the specified readable.
*
* @param readable to read from, must not be null
* @return zero or more BED records read from the specified readable
* @throws IOException if an I/O error occurs
*/
public static Iterable read(final Readable readable) throws IOException {
checkNotNull(readable);
Collect collect = new Collect();
stream(readable, collect);
return collect.records();
}
/**
* Stream zero or more BED records from the specified readable.
*
* @param readable readable to stream from, must not be null
* @param listener event based listener callback, must not be null
* @throws IOException if an I/O error occurs
*/
public static void stream(final Readable readable, final BedListener listener) throws IOException {
checkNotNull(readable);
checkNotNull(listener);
BedLineProcessor lineProcessor = new BedLineProcessor(listener);
CharStreams.readLines(readable, lineProcessor);
}
/**
* BED line processor.
*/
private static final class BedLineProcessor implements LineProcessor