Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
d1430a51
Commit
d1430a51
authored
21 years ago
by
Graham McVicker
Browse files
Options
Downloads
Patches
Plain Diff
modified call to genomic2cdna in get_all_cdna_SNPs b/c slice arg should no longer be necessary
parent
65fdbccf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/Bio/EnsEMBL/Transcript.pm
+4
-4
4 additions, 4 deletions
modules/Bio/EnsEMBL/Transcript.pm
with
4 additions
and
4 deletions
modules/Bio/EnsEMBL/Transcript.pm
+
4
−
4
View file @
d1430a51
...
...
@@ -13,8 +13,6 @@ Transcript - gene transcript object
=head1 SYNOPSIS
Give standard usage here
=head1 DESCRIPTION
Contains details of coordinates of all exons that make
...
...
@@ -37,6 +35,8 @@ Manipulation:
Email questions to the ensembl developer mailing list <ensembl-dev@ebi.ac.uk>
=head1 METHODS
=cut
package
Bio::EnsEMBL::
Transcript
;
...
...
@@ -979,8 +979,8 @@ sub get_all_cdna_SNPs {
foreach
my
$type
(
@cdna_types
)
{
$snp_hash
{
$type
}
=
[]
;
foreach
my
$snp
(
@
{
$all_snps
->
{
$type
}})
{
my
@coords
=
$transcript
->
genomic2cdna
(
$snp
->
start
,
$snp
->
end
,
$snp
->
strand
,
$slice
);
my
@coords
=
$transcript
->
genomic2cdna
(
$snp
->
start
,
$snp
->
end
,
$snp
->
strand
);
#skip snps that don't map cleanly (possibly an indel...)
if
(
scalar
(
@coords
)
!=
1
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment