Skip to content

Commit 519704c

Browse files
author
Nathaniel Echols
committed
Merge pull request #1 in SAT/motifmaker from bugfix/SAT-333-enable-basemods-analysis-for-sequel to master
* commit '6d4f3fa4922595345b14b1747d2fc199a306d760': sort by objectiveScore instead of fraction
2 parents 81570d3 + 6d4f3fa commit 519704c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Binary file not shown.

MotifMaker/src/main/scala/com/pacbio/basemods/Program.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ case class Pair[A](v1: A, v2: A) extends MotifGroup[A]
734734
var summaries = goodMotifs map (m => summarizeEvidence(genomeInfo, allMods, m))
735735

736736
var unclustered = computeUnclustered(allMods, genomeInfo, goodMotifs)
737-
(summaries.sortBy(c => - c.fraction), unclustered)
737+
(summaries.sortBy(c => - c.objectiveScore), unclustered)
738738
}
739739

740740
def writeMotifCsv(fn: File, motifs: List[MotifSummary]) =
@@ -801,7 +801,7 @@ case class Pair[A](v1: A, v2: A) extends MotifGroup[A]
801801
println("Got results:")
802802
for(m <- motifs)
803803
println(m)
804-
writeMotifCsv(new File(output), motifs)
804+
writeMotifCsv(new File(output), motifs.sortBy(m => - m.objectiveScore))
805805
// Optionally write output xml
806806
xmlOut match {
807807
case null => ()

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
name := "MotifMaker"
33

4-
version in ThisBuild := "0.3.0"
4+
version in ThisBuild := "0.3.1"
55

66
organization in ThisBuild := "com.pacbio"
77

0 commit comments

Comments
 (0)