Skip to content

Commit

Permalink
Merge branch 'main' into tests
Browse files Browse the repository at this point in the history
  • Loading branch information
VerisimilitudeX authored Jan 7, 2023
2 parents 74999c0 + 7eb8abb commit eb8928f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ cff-version: "1.1.0"
authors:
- family-names: Acharya
given-names: Piyush
- family-names: Wang
given-names: Evan

date-released: 2022-10-10
message: "If you use this software, please cite it using these metadata."
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/DNAnalyzer/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ public static void clearTerminal() throws InterruptedException, IOException {
}
}

/**
* Configures sentry.io to handle error monitoring.
*/
private static void configureSentry() {
Sentry.init(options -> {
options.setDsn(
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/DNAnalyzer/ui/cli/CmdArgs.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void run() {
.isValidDna()
.replaceDNA("u", "t");

if (reverse == true) {
if (reverse) {
dnaAnalyzer = dnaAnalyzer.reverseDna();
}

Expand Down

0 comments on commit eb8928f

Please sign in to comment.