Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl-hive
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
7
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-hive
Commits
04ad0fab
Commit
04ad0fab
authored
12 years ago
by
Leo Gordon
Browse files
Options
Downloads
Patches
Plain Diff
no longer used
parent
7e45b86c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/Bio/EnsEMBL/Hive/Extensions.pm
+0
-30
0 additions, 30 deletions
modules/Bio/EnsEMBL/Hive/Extensions.pm
modules/Bio/EnsEMBL/Hive/Process.pm
+0
-1
0 additions, 1 deletion
modules/Bio/EnsEMBL/Hive/Process.pm
with
0 additions
and
31 deletions
modules/Bio/EnsEMBL/Hive/Extensions.pm
+
0
−
30
View file @
04ad0fab
...
...
@@ -33,8 +33,6 @@ use Bio::EnsEMBL::Utils::Exception;
use
Bio::EnsEMBL::
Analysis
;
use
Bio::EnsEMBL::DBSQL::
DBConnection
;
use
Bio::EnsEMBL::Hive::
URLFactory
;
#use Bio::EnsEMBL::Pipeline::RunnableDB;
#use Bio::EnsEMBL::Analysis::RunnableDB;
=head2 Bio::EnsEMBL::Analysis::process
...
...
@@ -161,34 +159,6 @@ sub Bio::EnsEMBL::Analysis::stats
return
$stats
;
}
=head2 Bio::EnsEMBL::Analysis::data
Arg [1] : none
Example : $stats = $analysis->data;
Description: returns the analysis data associated with this Analysis
object. The data is stored in the analysis_data table.
Does not cache, but pull from database by using the
Analysis objects adaptor->db.
Returntype : String
Exceptions : none
Caller : general
=cut
sub
Bio
::
EnsEMBL
::
Analysis
::
data
{
my
$self
=
shift
;
my
$data
=
"";
my
$analysis_data_id
=
eval
(
$self
->
parameters
)
->
{'
analysis_data_id
'};
unless
(
$analysis_data_id
)
{
warning
(
"
analysis_data_id undefined for analysis
"
.
$self
->
logic_name
.
"
in analysis_data table.
")
;
}
else
{
$data
=
$self
->
adaptor
->
db
->
get_AnalysisDataAdaptor
->
fetch_by_dbID
(
$analysis_data_id
)
;
}
return
$data
;
}
#######################################
# extensions to
...
...
This diff is collapsed.
Click to expand it.
modules/Bio/EnsEMBL/Hive/Process.pm
+
0
−
1
View file @
04ad0fab
...
...
@@ -90,7 +90,6 @@ use Bio::EnsEMBL::DBSQL::DBConnection;
use
Bio::EnsEMBL::Utils::
Argument
;
use
Bio::EnsEMBL::Utils::
Exception
('
throw
');
use
Bio::EnsEMBL::Hive::
Utils
('
url2dbconn_hash
');
#use Bio::EnsEMBL::Hive::AnalysisJob;
use
base
('
Bio::EnsEMBL::Utils::Exception
');
# provide these methods for deriving classes
...
...
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