
org.broadinstitute.hellbender.utils.codecs.gtf.GencodeGtfUTRFeature Maven / Gradle / Ivy
The newest version!
package org.broadinstitute.hellbender.utils.codecs.gtf;
/**
* A Gencode GTF Feature representing an untranslated region.
*
* A GTF Feature represents one row of a GTF File.
* The specification of a GTF file is defined here:
* http://mblab.wustl.edu/GTF22.html
*
* Created by jonn on 7/25/17.
*/
final public class GencodeGtfUTRFeature extends GencodeGtfFeature {
private GencodeGtfUTRFeature(final String[] gtfFields, final String gtfFileType) {
super(gtfFields, gtfFileType);
}
public static GencodeGtfFeature create(final String[] gtfFields, final String gtfFileType) {
return new GencodeGtfUTRFeature(gtfFields, gtfFileType);
}
private GencodeGtfUTRFeature(final GencodeGtfFeatureBaseData baseData) {
super(baseData);
}
public static GencodeGtfFeature create(final GencodeGtfFeatureBaseData baseData) {
return new GencodeGtfUTRFeature(baseData);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy