Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
b4f671b4
Commit
b4f671b4
authored
Jul 07, 2003
by
Graham McVicker
Browse files
do not assign to $_ in revcomp
parent
8b70751a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
modules/Bio/EnsEMBL/DBSQL/SequenceAdaptor.pm
modules/Bio/EnsEMBL/DBSQL/SequenceAdaptor.pm
+5
-4
No files found.
modules/Bio/EnsEMBL/DBSQL/SequenceAdaptor.pm
View file @
b4f671b4
...
...
@@ -298,10 +298,11 @@ sub store {
sub
_reverse_comp
{
my
$self
=
shift
;
my
$seq
=
shift
;
$_
=
reverse
(
$seq
);
tr/CGTAcgta/GCATgcat/
;
return
$_
;
$seq
=
reverse
(
$seq
);
$seq
=~
tr/acgtrymkswhbvdnxACGTRYMKSWHBVDNX/tgcayrkmswdvbhnxTGCAYRKMSWDVBHNX/
;
return
$seq
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment