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
874d29d0
Commit
874d29d0
authored
21 years ago
by
Web Admin
Browse files
Options
Downloads
Patches
Plain Diff
add fetch_attributes only
parent
8a5cacc7
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/Lite/SNPAdaptor.pm
+66
-3
66 additions, 3 deletions
modules/Bio/EnsEMBL/Lite/SNPAdaptor.pm
with
66 additions
and
3 deletions
modules/Bio/EnsEMBL/Lite/SNPAdaptor.pm
+
66
−
3
View file @
874d29d0
...
...
@@ -84,7 +84,10 @@ sub fetch_all_by_Slice {
}
#create a snp object through a fast (hacky) constructor
my
$snp
=
Bio::EnsEMBL::
SNP
->
new_fast
(
my
$STATUS
=
$arrayref
->
[
6
];
$STATUS
=~
s/-/ /
;
$STATUS
=
(
$STATUS
&&
$STATUS
ne
'
no info
'
)
?
"
proven
$STATUS
"
:
'
suspected
';
my
$snp
=
Bio::EnsEMBL::
SNP
->
new_fast
(
{
'
dbID
'
=>
$arrayref
->
[
0
],
'
_gsf_start
'
=>
$arrayref
->
[
1
]
-
$slice_start
+
1
,
'
_gsf_end
'
=>
$arrayref
->
[
2
]
-
$slice_start
+
1
,
...
...
@@ -93,11 +96,13 @@ sub fetch_all_by_Slice {
'
_type
'
=>
$arrayref
->
[
4
],
'
_range_type
'
=>
$arrayref
->
[
5
],
'
_validated
'
=>
$arrayref
->
[
6
],
'
alleles
'
=>
$arrayref
->
[
7
],
'
status
'
=>
$STATUS
,
'
alleles
'
=>
$arrayref
->
[
7
],
'
_ambiguity_code
'
=>
$arrayref
->
[
10
],
'
_snpclass
'
=>
$arrayref
->
[
8
],
'
_mapweight
'
=>
$arrayref
->
[
9
],
'
_source_tag
'
=>
$arrayref
->
[
11
],
'
_source
'
=>
$arrayref
->
[
11
],
'
_source_tag
'
=>
$arrayref
->
[
11
],
'
link
'
=>
\
@links
});
push
@snps
,
$snp
;
}
...
...
@@ -105,5 +110,63 @@ sub fetch_all_by_Slice {
return
\
@snps
;
}
sub
fetch_attributes_only
{
my
$self
=
shift
;
my
$refsnp_id
=
shift
;
my
$source
=
shift
||
'
dbSNP
';
my
$WHERE
=
$source
eq
'
dbSNP
'
?
"
id_refsnp = ? and source='dbSNP'
"
:
"
id_ano=? and source='non-dbSNP'
";
my
%SNPS
=
qw( 12 dbSNP 13 WI 14 HGBASE 15 TSC-CSHL 16 ANO )
;
my
$QUERY
=
"
select internal_id, chr_start, chr_end, chr_strand, type, range_type,
validated, alleles, snpclass, mapweight, ambiguity, source,
id_refsnp, id_wi, id_hgbase, id_tsc, id_ano, chr_name
FROM snp
WHERE
$WHERE
";
my
$sth
=
$self
->
prepare
(
$QUERY
);
eval
{
$sth
->
execute
(
$refsnp_id
);};
return
[]
if
$@
;
my
@snps
=
();
my
%link_hash
;
my
$link
;
while
(
my
$arrayref
=
$sth
->
fetchrow_arrayref
())
{
my
@links
=
();
foreach
(
sort
keys
%SNPS
)
{
my
$V
=
$arrayref
->
[
$_
];
if
(
$V
&&
$V
ne
''
)
{
unless
(
$link
=
$link_hash
{"
$SNPS
{
$_
}:
$V
"})
{
$link_hash
{"
$SNPS
{
$_
}:
$V
"}
=
$link
=
Bio::EnsEMBL::
DBEntry
->
new_fast
(
{'
_dbname
'
=>
$SNPS
{
$_
},
'
_primary_id
'
=>
$V
});
}
push
@links
,
$link
;
}
}
#create a snp object through a fast (hacky) constructor
my
$STATUS
=
$arrayref
->
[
6
];
$STATUS
=~
s/-/ /
;
$STATUS
=
(
$STATUS
&&
$STATUS
ne
'
no info
'
)
?
"
proven
$STATUS
"
:
'
suspected
';
my
$snp
=
Bio::EnsEMBL::
SNP
->
new_fast
(
{
'
dbID
'
=>
$arrayref
->
[
0
],
'
_snp_strand
'
=>
$arrayref
->
[
3
],
'
_gsf_score
'
=>
1
,
'
_type
'
=>
$arrayref
->
[
4
],
'
_range_type
'
=>
$arrayref
->
[
5
],
'
_validated
'
=>
$arrayref
->
[
6
],
'
status
'
=>
$STATUS
,
'
alleles
'
=>
$arrayref
->
[
7
],
'
_ambiguity_code
'
=>
$arrayref
->
[
10
],
'
_snpclass
'
=>
$arrayref
->
[
8
],
'
_mapweight
'
=>
$arrayref
->
[
9
],
'
_source
'
=>
$arrayref
->
[
11
],
'
_source_tag
'
=>
$arrayref
->
[
11
],
'
link
'
=>
\
@links
});
return
$snp
;
}
return
undef
;
}
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