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