use of au.edu.wehi.idsv.AssemblyEvidenceSource in project gridss by PapenfussLab.
the class PositionalAssemblerTest method rp_anchor_should_set_non_reference_bases_as_anchoring.
@Test
public void rp_anchor_should_set_non_reference_bases_as_anchoring() {
ProcessingContext pc = getContext();
pc.getAssemblyParameters().anchorLength = 1;
AssemblyEvidenceSource aes = AES(pc);
pc.getAssemblyParameters().k = 4;
List<DirectedEvidence> input = new ArrayList<DirectedEvidence>();
// 12345678901234567890
// ACGTTGGTTA
// MMMMMSSSSS
// GCAACGTTGGTTAA
// MMMMMMMMSSSSSS
// TTTTTGCAACGTTGGTTAA
input.add(SCE(FWD, withSequence("ACGTTGGTTA", Read(0, 10, "5M5S"))[0]));
input.add(SCE(FWD, withSequence("TTTTTGCAACGTTGGTTAA", Read(0, 2, "13M6S"))[0]));
input.add(NRRP(withSequence("TTTTTGCAACGTTGGTTAA", DP(0, 2, "13M6S", true, 1, 1, "19M", false))));
input.sort(DirectedEvidenceOrder.ByStartEnd);
List<SingleReadEvidence> r = asAssemblyEvidence(aes, Lists.newArrayList(new PositionalAssembler(pc, aes, new SequentialIdGenerator("asm"), input.iterator())));
assertEquals(2, r.size());
// race condition w.r.t which assembly returns first
assertEquals(new BreakendSummary(0, FWD, 14), r.get(0).getBreakendSummary());
// anchor length to match breakend length
assertEquals("AACGTT", S(r.get(0).getAnchorSequence()));
assertEquals("GGTTAA", S(r.get(0).getBreakendSequence()));
assertEquals("AACGTTGGTTAA", S(r.get(0).getSAMRecord().getReadBases()));
}
use of au.edu.wehi.idsv.AssemblyEvidenceSource in project gridss by PapenfussLab.
the class StaticDeBruijnPathGraphGexfExporterTest method positional_should_export_dot.
@Test
@Category(Hg19Tests.class)
public void positional_should_export_dot() throws IOException {
File output = new File(super.testFolder.getRoot(), "chr12-244000.vcf");
setReference(Hg19Tests.findHg19Reference("chr12.fa"));
createInput(new File("src/test/resources/chr12-244000.tagged.bam"));
BuildBamIndex bbi = new BuildBamIndex();
bbi.instanceMain(new String[] { "I=" + input.getAbsolutePath() });
ProcessingContext pc = getCommandlineContext();
SAMEvidenceSource ses = new SAMEvidenceSource(pc, input, null, 0);
AssemblyEvidenceSource aes = new AssemblyEvidenceSource(pc, ImmutableList.of(ses), output);
aes.assembleBreakends(null);
File dir = new File(super.testFolder.getRoot(), "visualisation");
File[] export = dir.listFiles((FileFilter) new WildcardFileFilter("*.dot"));
// TODO: change graph write timing
assertTrue(export != null && export.length > 0);
}
use of au.edu.wehi.idsv.AssemblyEvidenceSource in project gridss by PapenfussLab.
the class AssembleBreakends method doWork.
@Override
public int doWork(ExecutorService threadpool) throws IOException {
IOUtil.assertFileIsWritable(OUTPUT);
ProcessingContext pc = getContext();
List<SAMEvidenceSource> sources = getSamEvidenceSources();
AssemblyEvidenceSource assembler = new AssemblyEvidenceSource(pc, sources, OUTPUT);
assembler.assembleBreakends(threadpool);
return 0;
}
use of au.edu.wehi.idsv.AssemblyEvidenceSource in project gridss by PapenfussLab.
the class AnnotateReferenceCoverage method iterator.
@Override
public CloseableIterator<VariantContextDirectedBreakpoint> iterator(CloseableIterator<VariantContextDirectedBreakpoint> calls, ExecutorService threadpool) {
ProcessingContext context = getContext();
List<SAMEvidenceSource> sources = getSamEvidenceSources();
AssemblyEvidenceSource asm = getAssemblySource();
int windowSize = SAMEvidenceSource.maximumWindowSize(context, sources, asm);
return new SequentialCoverageAnnotator<VariantContextDirectedBreakpoint>(context, sources, calls, 2 * windowSize + WINDOW_SIZE_SAFETY_MARGIN, threadpool);
}
use of au.edu.wehi.idsv.AssemblyEvidenceSource in project gridss by PapenfussLab.
the class CallVariants method doWork.
@Override
public int doWork(ExecutorService threadpool) throws IOException, InterruptedException, ExecutionException {
IOUtil.assertFileIsWritable(OUTPUT);
File lockFile = FileSystemContext.getWorkingFileFor(OUTPUT, "gridss.lock.");
if (lockFile.mkdir()) {
log.debug("Created lock ", lockFile);
// Set up lock file clean-up if GRIDSS execution is forcibly terminated using SIGINT
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
lockFile.delete();
}
});
extractEvidence(threadpool, getSamEvidenceSources());
AssemblyEvidenceSource assemblyEvidence = new AssemblyEvidenceSource(getContext(), getSamEvidenceSources(), ASSEMBLY);
if (!ASSEMBLY.exists()) {
assemblyEvidence.assembleBreakends(threadpool);
}
// convert breakend assemblies into breakpoint via split read identification
assemblyEvidence.ensureExtracted();
// call and annotate variants
callVariants(threadpool);
lockFile.delete();
} else {
log.error("Aborting since lock " + lockFile + " already exists. GRIDSS does not support multiple simultaneous instances running on the same data.");
return 3;
}
return 0;
}
Aggregations