Skip to content

Commit

Permalink
changed install command to use a tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Rauter committed Sep 27, 2024
1 parent 0b91cf5 commit 97c4428
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ BiocManager::install(c(

# Install SplineOmics from GitHub
remotes::install_github(
"csbg/SplineOmics", # Install latest commit.
"csbg/SplineOmics", # GitHub repository
ref = "v0.1.0", # Specify the tag to install
dependencies = TRUE, # Install all dependencies
force = TRUE, # Force reinstallation
upgrade = "always", # Always upgrade dependencies
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ BiocManager::install(c(

# Install SplineOmics from GitHub
remotes::install_github(
"csbg/SplineOmics", # Install latest commit.
"csbg/SplineOmics", # GitHub repository
ref = "v0.1.0", # Specify the tag to install
dependencies = TRUE, # Install all dependencies
force = TRUE, # Force reinstallation
upgrade = "always", # Always upgrade dependencies
Expand Down

0 comments on commit 97c4428

Please sign in to comment.