Skip to content

Commit fb1f8b1

Browse files
Fixed reverse complement of IUPAC codes
1 parent 2693212 commit fb1f8b1

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

change_log.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
v2.0.11
2+
- Fixed reverse complement of IUPAC codes
3+
4+
v2.0.10
5+
- Added new covariance model to detect vertebrate mt-tRNA-Cys without D-arm in
6+
armadillos and some reptiles
7+
- Added MitoHighConfidenceFilter, a post-filtering tool, for annotating
8+
possible mitochondrial tRNA pseudogenes or extra genes due to duplication events
9+
110
v2.0.9
211
- Added option -j or --gff for generating GFF3 output file
312
- Checked Infernal version compatibilty

lib/tRNAscanSE/Utils.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ our %comp_map = ( # Complement map
1919
'A' => 'T', 'T' => 'A', 'U' => 'A',
2020
'G' => 'C', 'C' => 'G',
2121
'Y' => 'R', 'R' => 'Y',
22-
'S' => 'W', 'W' => 'S',
22+
'S' => 'S', 'W' => 'W',
2323
'M' => 'K', 'K' => 'M',
2424
'B' => 'V', 'V' => 'B',
2525
'H' => 'D', 'D' => 'H',

tRNAscan-SE.src

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# tRNAscan-SE: a program for improved detection of transfer RNA
55
# genes in genomic sequence
66
#
7-
# Version 2.0.10
7+
# Version 2.0.11
88
#
99
# Copyright (C) 2022 Patricia Chan and Todd Lowe
1010
#
@@ -39,8 +39,8 @@ use tRNAscanSE::IntResultFile;
3939
use tRNAscanSE::MultiResultFile;
4040
use tRNAscanSE::SS;
4141

42-
our $version = "2.0.10";
43-
our $release_date = "Sept 2022";
42+
our $version = "2.0.11";
43+
our $release_date = "Oct 2022";
4444
our $program_id = "tRNAscan-SE-".$version;
4545

4646
# modified by 'make'

0 commit comments

Comments
 (0)