Mercurial > repos > timpalpant > java_genomics_toolkit
view java-genomics-toolkit/src/edu/unc/genomics/IntervalFileConverter.java @ 0:1daf3026d231
Upload alpha version
author | timpalpant |
---|---|
date | Mon, 13 Feb 2012 21:55:55 -0500 |
parents | |
children |
line wrap: on
line source
package edu.unc.genomics; import java.io.IOException; import java.nio.file.Path; import com.beust.jcommander.IStringConverter; import com.beust.jcommander.ParameterException; import edu.unc.genomics.io.IntervalFile; /** * @author timpalpant * */ public class IntervalFileConverter implements IStringConverter<IntervalFile<? extends Interval>> { @Override public IntervalFile<? extends Interval> convert(String value) throws ParameterException { PathConverter converter = new PathConverter(); Path p = converter.convert(value); try { return IntervalFile.autodetect(p); } catch (IOException e) { throw new ParameterException("IOException while attempting to autodetect interval file type"); } } }