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-hive
Commits
fac28f2b
Commit
fac28f2b
authored
Dec 04, 2009
by
Leo Gordon
Browse files
less dependency on individual setup
parent
b490677e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
docs/eHive_install_usage.txt
docs/eHive_install_usage.txt
+1
-1
docs/long_mult_example_pipeline.txt
docs/long_mult_example_pipeline.txt
+6
-3
No files found.
docs/eHive_install_usage.txt
View file @
fac28f2b
...
...
@@ -49,7 +49,7 @@ It will be convenient to set a variable pointing at this directory for future us
2.2. Change into your ensembl codebase directory:
$ cd $EN
D
_CODE_ROOT
$ cd $EN
S
_CODE_ROOT
2.3. Log into the BioPerl CVS server (using "cvs" for password):
...
...
docs/long_mult_example_pipeline.txt
View file @
fac28f2b
...
...
@@ -18,19 +18,22 @@
# 0. Cache MySQL connection parameters in a variable (they will work as eHive connection parameters as well) :
export MYCONN="--host=hostname --port=port_number --user=username --password=secret"
#
# also, set the ENS_CODE_ROOT to the directory where ensembl packages are installed:
export ENS_CODE_ROOT="$HOME/ensembl_main"
# 1. Create an empty database:
mysql $MYCONN -e 'DROP DATABASE IF EXISTS long_mult_test'
mysql $MYCONN -e 'CREATE DATABASE long_mult_test'
# 2. Create eHive infrastructure:
mysql $MYCONN long_mult_test <
~lg4/work
/ensembl-hive/sql/tables.sql
mysql $MYCONN long_mult_test <
$ENS_CODE_ROOT
/ensembl-hive/sql/tables.sql
# 3. Create analyses/control_rules/dataflow_rules of the LongMult pipeline:
mysql $MYCONN long_mult_test <
~lg4/work
/ensembl-hive/sql/create_long_mult.sql
mysql $MYCONN long_mult_test <
$ENS_CODE_ROOT
/ensembl-hive/sql/create_long_mult.sql
# 4. "Load" the pipeline with a multiplication task:
mysql $MYCONN long_mult_test <
~lg4/work
/ensembl-hive/sql/load_long_mult.sql
mysql $MYCONN long_mult_test <
$ENS_CODE_ROOT
/ensembl-hive/sql/load_long_mult.sql
#
# or you can add your own task(s). Several tasks can be added at once:
mysql $MYCONN long_mult_test <<EoF
...
...
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