Skip to content

Commit

Permalink
update changelog, add paper to app
Browse files Browse the repository at this point in the history
  • Loading branch information
j-andrews7 committed Dec 2, 2024
1 parent 54dacae commit 3a57580
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## v0.4.2

**Release date: 12/02/2024**

- Add links to paper in app, README, etc.
- Minor documentation fixes.

## v0.4.1

**Release date: 11/16/2024**

- Improved error handling for edge cases and malformed inputs - [#36](https://github.com/j-andrews7/STRprofiler/issues/36), - [#35](https://github.com/j-andrews7/STRprofiler/issues/35)
- Add docs and pypi links to app - [#38](https://github.com/j-andrews7/STRprofiler/issues/38)

## v0.4.0

**Release date: 09/30/2024**
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tool.poetry]
name = "strprofiler"
version = "0.4.1"
version = "0.4.2"
description = "A python package, CLI tool, and Shiny application to compare short tandem repeat (STR) profiles."
authors = ["Jared Andrews <jared.andrews07@gmail.com>",
"Mike Lloyd <mike.lloyd@jax.org>"]
license = "MIT"
repository = "https://github.com/j-andrews7/strprofiler"
documentation = "https://strprofiler.readthedocs.io/en/latest/"
readme = "README.md"

[tool.poetry.dependencies]
Expand All @@ -23,6 +24,9 @@ flatten-json = "^0.1.14"

[tool.poetry.dev-dependencies]

[tool.poetry.urls]
"Paper" = "https://doi.org/10.1093/bioinformatics/btae713"

[tool.poetry.scripts]
strprofiler = 'strprofiler.cli:cli'

Expand Down
7 changes: 7 additions & 0 deletions strprofiler/shiny_app/shiny_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,13 @@ def create_app(db=None):
target="_blank",
),
),
ui.nav_control(
ui.a(
ui.p("Paper"),
href="https://doi.org/10.1093/bioinformatics/btae713",
target="_blank",
),
),
ui.nav_control(
ui.a(
ui.span(ui.p("Bug Reports")),
Expand Down

0 comments on commit 3a57580

Please sign in to comment.