Package picard.vcf.processor
Class VcfFileSegmentGenerator
- java.lang.Object
-
- picard.vcf.processor.VcfFileSegmentGenerator
-
@Deprecated public abstract class VcfFileSegmentGenerator extends Object
Deprecated.from 2022-03-17, UseVcfPathSegmentGeneratorDescribes a mechanism for producingVcfFileSegments from a VCF file.
-
-
Constructor Summary
Constructors Constructor Description VcfFileSegmentGenerator()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static VcfFileSegmentGeneratorbyWholeContigSubdividingWithWidth(long segmentWidth)Deprecated.static <T> VcfFileSegmentGeneratorexcludingNonOverlaps(VcfFileSegmentGenerator strategy, htsjdk.samtools.util.OverlapDetector<T> overlaps)Deprecated.Returns a decoratedVcfFileSegmentGeneratorthat filters outVcfFileSegments that have no overlap with the providedOverlapDetector.abstract Iterable<VcfFileSegment>forVcf(File vcf)Deprecated.
-
-
-
Method Detail
-
forVcf
public abstract Iterable<VcfFileSegment> forVcf(File vcf)
Deprecated.
-
byWholeContigSubdividingWithWidth
public static VcfFileSegmentGenerator byWholeContigSubdividingWithWidth(long segmentWidth)
Deprecated.
-
excludingNonOverlaps
public static <T> VcfFileSegmentGenerator excludingNonOverlaps(VcfFileSegmentGenerator strategy, htsjdk.samtools.util.OverlapDetector<T> overlaps)
Deprecated.Returns a decoratedVcfFileSegmentGeneratorthat filters outVcfFileSegments that have no overlap with the providedOverlapDetector.
-
-