Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better loaded data #59

Merged
merged 4 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[bumpversion]
current_version = 0.99.649
current_version = 0.99.651
commit = True
commit_args = --no-verify
tag = True
sign_tags = True

[bumpversion:file:DESCRIPTION]

Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: drugfindR
Title: Investigate iLINCS for candidate repurposable drugs
Version: 0.99.649
Version: 0.99.651
Authors@R: c(
person(given = c("Ali", "Sajid"),
family = "Imami",
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"codeRepository": "https://github.com/CogDisResLab/drugfindR",
"issueTracker": "https://github.com/CogDisResLab/drugfindR/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.99.649",
"version": "0.99.651",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
Binary file removed inst/extdata/dCovid_diffexp.tsv.tar.gz
Binary file not shown.
Binary file removed inst/extdata/dCovid_diffexp.tsv.tar.xz
Binary file not shown.
2 changes: 1 addition & 1 deletion utilities/update-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if ! [ -x "$(command -v cz)" ]; then
fi

# Get the most recent tag
tag=$(git describe --abbrev=0 --tags)
tag=$(git describe --tags $(git rev-list --tags --max-count=1))

# Update the changelog. Assume this is not the first tag
cz changelog
Loading