Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
4f16af68
Commit
4f16af68
authored
Nov 30, 2020
by
Matthieu Muffato
Committed by
ens-bwalts
Aug 02, 2021
Browse files
Don't put the schema definition there, as it may go out of sync (it already has !)
parent
df7ed691
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
28 deletions
+3
-28
modules/Bio/EnsEMBL/Hive/DataflowRule.pm
modules/Bio/EnsEMBL/Hive/DataflowRule.pm
+1
-10
modules/Bio/EnsEMBL/Hive/ResourceClass.pm
modules/Bio/EnsEMBL/Hive/ResourceClass.pm
+1
-8
modules/Bio/EnsEMBL/Hive/ResourceDescription.pm
modules/Bio/EnsEMBL/Hive/ResourceDescription.pm
+1
-10
No files found.
modules/Bio/EnsEMBL/Hive/DataflowRule.pm
View file @
4f16af68
...
...
@@ -6,16 +6,7 @@
=head1 DESCRIPTION
A data container object (methods are intelligent getters/setters) that corresponds to a row stored in 'dataflow_rule' table:
CREATE TABLE dataflow_rule (
dataflow_rule_id int(10) unsigned NOT NULL AUTO_INCREMENT,
from_analysis_id int(10) unsigned NOT NULL,
branch_code int(10) default 1 NOT NULL,
PRIMARY KEY (dataflow_rule_id),
UNIQUE (from_analysis_id, to_analysis_url)
);
A data container object (methods are intelligent getters/setters) that corresponds to a row stored in 'dataflow_rule' table
A dataflow rule is activated when a Bio::EnsEMBL::Hive::AnalysisJob::dataflow_output_id is called at any moment during a RunnableDB's execution.
The current RunnableDB's analysis ($from_analysis) and the requested $branch_code (1 by default) define the entry conditions,
...
...
modules/Bio/EnsEMBL/Hive/ResourceClass.pm
View file @
4f16af68
...
...
@@ -6,14 +6,7 @@
=head1 DESCRIPTION
A data container object (the only methods are getters/setters) that corresponds to a row in 'resource_class' table:
CREATE TABLE resource_class (
resource_class_id int(10) unsigned NOT NULL AUTO_INCREMENT, # unique internal id
name varchar(40) NOT NULL,
PRIMARY KEY(resource_class_id)
);
A data container object (the only methods are getters/setters) that corresponds to a row in 'resource_class' table
=head1 LICENSE
...
...
modules/Bio/EnsEMBL/Hive/ResourceDescription.pm
View file @
4f16af68
...
...
@@ -6,16 +6,7 @@
=head1 DESCRIPTION
A data container object (the only methods are getters/setters) that corresponds to a row in 'resource_description' table:
CREATE TABLE resource_description (
resource_class_id int(10) unsigned NOT NULL,
meadow_type varchar(40) NOT NULL,
submission_cmd_args VARCHAR(255) NOT NULL DEFAULT '',
worker_cmd_args VARCHAR(255) NOT NULL DEFAULT '',
PRIMARY KEY(resource_class_id, meadow_type)
) ENGINE=InnoDB;
A data container object (the only methods are getters/setters) that corresponds to a row in 'resource_description' table
=head1 LICENSE
...
...
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