Skip to content
Snippets Groups Projects
Unverified Commit 118948cb authored by Jen Herting's avatar Jen Herting Committed by GitHub
Browse files

[bowtie] added version 1.3.0. Patch fixed for new version (#17744)

parent f9ee76a8
No related branches found
No related tags found
No related merge requests found
--- a/alphabet.cpp 2020-07-28 15:02:56.137635525 -0400
+++ b/alphabet.cpp 2020-07-28 15:05:32.385589360 -0400
@@ -274,7 +274,7 @@
const char *iupacs = "!ACMGRSVTWYHKDBN!acmgrsvtwyhkdbn";
signed char mask2iupac[16] = {
- -1,
+ static_cast<char>(-1),
'A', // 0001
'C', // 0010
'M', // 0011
...@@ -13,6 +13,7 @@ class Bowtie(MakefilePackage): ...@@ -13,6 +13,7 @@ class Bowtie(MakefilePackage):
homepage = "https://sourceforge.net/projects/bowtie-bio/" homepage = "https://sourceforge.net/projects/bowtie-bio/"
url = "https://github.com/BenLangmead/bowtie/archive/v1.2.0.tar.gz" url = "https://github.com/BenLangmead/bowtie/archive/v1.2.0.tar.gz"
version('1.3.0', sha256='d7c2d982a67884909f284a0ff150b56b20127cd7a1ced461c3c4c03e6a6374c5')
version('1.2.3', sha256='86402114caeacbb3a3030509cb59f0b7e96361c7b3ee2dd50e2cd68200898823') version('1.2.3', sha256='86402114caeacbb3a3030509cb59f0b7e96361c7b3ee2dd50e2cd68200898823')
# The bowtie project git tagged and GitHub released a v1.2.2, # The bowtie project git tagged and GitHub released a v1.2.2,
# discovered/fixed a bug, git tagged a v1.2.2_p1 and moved the # discovered/fixed a bug, git tagged a v1.2.2_p1 and moved the
...@@ -50,7 +51,8 @@ class Bowtie(MakefilePackage): ...@@ -50,7 +51,8 @@ class Bowtie(MakefilePackage):
patch('for_aarch64.patch', when='target=aarch64:') patch('for_aarch64.patch', when='target=aarch64:')
# measures for narrowing error # measures for narrowing error
patch('fix_narrowing_err.patch') patch('fix_narrowing_err.patch', when='@:1.2.3')
patch('fix_narrowing_err_1.3.0.patch', when='@1.3.0:')
def edit(self, spec, prefix): def edit(self, spec, prefix):
makefile = FileFilter('Makefile') makefile = FileFilter('Makefile')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment