-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #917 from COMBINE-lab/develop
Develop
- Loading branch information
Showing
7 changed files
with
28 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
VERSION_MAJOR 1 | ||
VERSION_MINOR 10 | ||
VERSION_PATCH 2 | ||
VERSION_PATCH 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ MAINTAINER [email protected] | |
|
||
ENV PACKAGES git gcc make g++ libboost-all-dev liblzma-dev libbz2-dev \ | ||
ca-certificates zlib1g-dev libcurl4-openssl-dev curl unzip autoconf apt-transport-https ca-certificates gnupg software-properties-common wget | ||
ENV SALMON_VERSION 1.10.2 | ||
ENV SALMON_VERSION 1.10.3 | ||
|
||
# salmon binary will be installed in /home/salmon/bin/salmon | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#! /bin/bash | ||
SALMON_VERSION=1.10.2 | ||
SALMON_VERSION=1.10.3 | ||
TMPDIR=/mnt/scratch7/DELETE_ME_TEMP docker build --no-cache -t combinelab/salmon:${SALMON_VERSION} -t combinelab/salmon:latest . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
/** | ||
>HEADER | ||
Copyright (c) 2014-2022 Rob Patro [email protected] | ||
Copyright (c) 2014-2024 Rob Patro [email protected] | ||
This file is part of Salmon. | ||
Sailfish is free software: you can redistribute it and/or modify | ||
Salmon is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
@@ -28,8 +28,8 @@ | |
namespace salmon { | ||
constexpr char majorVersion[] = "1"; | ||
constexpr char minorVersion[] = "10"; | ||
constexpr char patchVersion[] = "2"; | ||
constexpr char version[] = "1.10.2"; | ||
constexpr char patchVersion[] = "3"; | ||
constexpr char version[] = "1.10.3"; | ||
constexpr uint32_t indexVersion = 5; | ||
constexpr char requiredQuasiIndexVersion[] = "p7"; | ||
} // namespace salmon | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters