Skip to content

Commit

Permalink
Reformat with scalafmt 3.8.3
Browse files Browse the repository at this point in the history
Executed command: scalafmt --non-interactive
  • Loading branch information
scala-steward committed Jul 30, 2024
1 parent 120700d commit c008a3a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ case class Job(
"jobID" -> jobID.asJson,
"parentID" -> parentID.asJson,
"status" -> status.asJson,
"foreign" -> (!ownerID.equals(user.userID)).asJson,
"foreign" -> !ownerID.equals(user.userID).asJson,
"watched" -> watchList.contains(user.userID).asJson,
"isPublic" -> isPublic.asJson,
"code" -> toolObj.code.asJson,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,12 @@ class ParamAccess @Inject() (tel: TEL) {
case "COSINE_PERCENTILE_CUTOFF" => select("cosine_percentile_cutoff", default = Some("70"))
case "ALIGNMENT_CUTOFF" => select("alignment_cutoff", default = Some("0.30"))
case "WIN_LEN" => select("win_len", default = Some("15"))
case "MERGE_HITS" => select("merge_hits", default = Some("1"))
case "PLM_ALN_MODE" => select("plm_aln_mode", default = Some("loc"))
case "SPAN" => select("span", default = Some("25"))
case "SIGMA_FACTOR" => select("sigma_factor", default = Some("2"))
case "BFACTOR" => select("bfactor", default = Some("2"))
case "PLM_GAP_EXT" => select("plm_gap_ext", default = Some("0.5"))


case "MERGE_HITS" => select("merge_hits", default = Some("1"))
case "PLM_ALN_MODE" => select("plm_aln_mode", default = Some("loc"))
case "SPAN" => select("span", default = Some("25"))
case "SIGMA_FACTOR" => select("sigma_factor", default = Some("2"))
case "BFACTOR" => select("bfactor", default = Some("2"))
case "PLM_GAP_EXT" => select("plm_gap_ext", default = Some("0.5"))

// HHpred
case "TWOTEXTALIGNMENT" =>
Expand Down

0 comments on commit c008a3a

Please sign in to comment.