diff options
author | 2015-12-26 19:02:47 +0100 | |
---|---|---|
committer | 2015-12-26 19:02:47 +0100 | |
commit | 369678cffc9f7ecae414f3800f01a2c2251e8669 (patch) | |
tree | bd63aa0a85e4636964e1fe5477cb1a1ee42fa064 /sci-biology/bowtie/files | |
parent | dev-python/pysvn: Drop vulnerable version for CVE-2015-0853 (diff) | |
download | gentoo-369678cffc9f7ecae414f3800f01a2c2251e8669.tar.gz gentoo-369678cffc9f7ecae414f3800f01a2c2251e8669.tar.bz2 gentoo-369678cffc9f7ecae414f3800f01a2c2251e8669.zip |
sci-biology/bowtie: Drop old
obsoletes:
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=564320
Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sci-biology/bowtie/files')
-rw-r--r-- | sci-biology/bowtie/files/bowtie-0.12.8-gcc-47.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/sci-biology/bowtie/files/bowtie-0.12.8-gcc-47.patch b/sci-biology/bowtie/files/bowtie-0.12.8-gcc-47.patch deleted file mode 100644 index 3c8a1e1d9ca4..000000000000 --- a/sci-biology/bowtie/files/bowtie-0.12.8-gcc-47.patch +++ /dev/null @@ -1,45 +0,0 @@ - alphabet.h | 24 ++++++++++++------------ - 1 files changed, 12 insertions(+), 12 deletions(-) - -diff --git a/alphabet.h b/alphabet.h -index b464ddf..08d0281 100644 ---- a/alphabet.h -+++ b/alphabet.h -@@ -38,6 +38,18 @@ static inline TStr reverseComplement(const TStr& s, bool color) { - return s_rc; - } - -+/// Reverse a string in-place -+template <typename TStr> -+static inline void reverseInPlace(TStr& s) { -+ typedef typename Value<TStr>::Type TVal; -+ size_t len = length(s); -+ for(size_t i = 0; i < (len>>1); i++) { -+ TVal tmp = s[i]; -+ s[i] = s[len-i-1]; -+ s[len-i-1] = tmp; -+ } -+} -+ - /** - * Reverse-complement s in-place. Ns go to Ns. - */ -@@ -69,18 +81,6 @@ static inline void reverseComplementInPlace(TStr& s, bool color) { - } - } - --/// Reverse a string in-place --template <typename TStr> --static inline void reverseInPlace(TStr& s) { -- typedef typename Value<TStr>::Type TVal; -- size_t len = length(s); -- for(size_t i = 0; i < (len>>1); i++) { -- TVal tmp = s[i]; -- s[i] = s[len-i-1]; -- s[len-i-1] = tmp; -- } --} -- - /** - * Return the reverse-complement of s. - */ |