Package org.dishevelled.bio.feature.gff3
Class Gff3Writer
- java.lang.Object
-
- org.dishevelled.bio.feature.gff3.Gff3Writer
-
public final class Gff3Writer extends Object
GFF3 writer.- Author:
- Michael Heuer
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidwrite(Iterable<Gff3Record> records, PrintWriter writer)Write zero or more GFF3 records with the specified print writer.static voidwrite(Gff3Record record, PrintWriter writer)Write the specified GFF3 record with the specified print writer.
-
-
-
Method Detail
-
write
public static void write(Gff3Record record, PrintWriter writer)
Write the specified GFF3 record with the specified print writer.- Parameters:
record- GFF3 record to write, must not be nullwriter- print writer to write GFF3 record with, must not be null
-
write
public static void write(Iterable<Gff3Record> records, PrintWriter writer)
Write zero or more GFF3 records with the specified print writer.- Parameters:
records- zero or more GFF3 records to write, must not be nullwriter- print writer to write GFF3 records with, must not be null
-
-