Skip to content

Commit

Permalink
Some minor misc engine changes (#7744)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesemery committed May 10, 2022
1 parent 7614ab6 commit 4271eb3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ funcotator_tmp
#Eclipse files
/bin/
.project
*.jar

#JENV local file
.java-version

.run/

#Test generated dot files
test*.dot
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,8 @@ dependencies {
exclude module: 'hadoop-bam'
}

implementation 'org.jgrapht:jgrapht-core:0.9.1'
implementation 'org.jgrapht:jgrapht-core:1.1.0'
implementation 'org.jgrapht:jgrapht-io:1.1.0'

implementation('org.disq-bio:disq:' + disqVersion)
implementation('org.apache.hadoop:hadoop-client:' + hadoopVersion) // should be a 'provided' dependency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ private AssemblyRegion loadNextAssemblyRegion() {
while ( locusIterator.hasNext() && nextRegion == null ) {
final AlignmentContext pileup = locusIterator.next();

logger.debug(()->"AssemblyRegionIterator pileup: " + pileup);

// Pop any new pending regions off of the activity profile. These pending regions will not become ready
// until we've traversed all the reads that belong in them.
//
Expand All @@ -140,6 +142,7 @@ private AssemblyRegion loadNextAssemblyRegion() {
}

final ActivityProfileState profile = evaluator.isActive(pileup, pileupRefContext, pileupFeatureContext);
logger.debug(() -> profile.toString());
activityProfile.add(profile);

// A pending region only becomes ready once our locus iterator has advanced beyond the end of its extended span
Expand Down

0 comments on commit 4271eb3

Please sign in to comment.