-Add option to ReadsPreprocessingPipeline to bypass SmallBamWriter and instead apply a PCollection<GATKRead> -> PCollection<String> transform, do a TextIO.Write().to(output).withSuffix() (might need to disable sharding), then prepend a header, then sort the sam and convert to bam.
Copied from original issue: broadinstitute/hellbender#771
From @droazen on July 30, 2015 19:40
Until https://github.com/broadinstitute/hellbender/issues/621 is implemented, we need a quick hack for this in order to effectively test the
ReadsPreprocessingPipeline
:-Need a way of converting GATKRead -> SAM record line (https://github.com/broadinstitute/hellbender/issues/618)
-Add option to ReadsPreprocessingPipeline to bypass
SmallBamWriter
and instead apply aPCollection<GATKRead>
->PCollection<String>
transform, do aTextIO.Write().to(output).withSuffix()
(might need to disable sharding), then prepend a header, then sort the sam and convert to bam.Copied from original issue: broadinstitute/hellbender#771