-
Create an account at mlab.com
-
Sign in and get to the home screen
-
Next to "MongoDB Deployments" you'll see three buttons. Click the one that says "Create new".
-
For "Cloud provider", select "amazon web services". For "Location": "Amazon's US East (Virginia) Region (us-east-1)".
-
Under "Plan", choose "Single-node" and select "Sandbox" (...it's free).
-
For "Database name" write "celltk".
-
Click "Create new MongoDB deployment".
-
Back on the home screen, click on "celltk".
-
Click on the "Users" tab and then select "Add a database user".
-
Choose a username and password. Note that in fireworks, the password is stored in plaintext.
-
Note that the information shown at the top ("To connect using the shell") contains the database hostname and database port (the number after the colon is the port).
-
Go to fireworks folder. Run
python initialize.py
to create setting files (my_launchpad.yaml and my_qadapters.yaml) -
Run
lpad reset
FireWorks manages queues to run many jobs in Sherlock.
The following example will run the test case.
First, modify the first two lines in CellTK/input_files/input_fireworks.yml to absolute path in your environment. <PATHtoOUTPUT> can be anywhere you want to save output.
Set PYTHONPATH
export PYTHONPATH="$PYTHONPATH:<absolute path to CellTK/fireworks>"
cd fireworks
lpad reset
python caller_fireworks.py <absolute path to CellTK/input_files/input_fireworks.yml>
lpad get_fws
Let's call each tasks as FireTasks.
lpad reset
to remove FireTasks you might have already prepared.python caller_fireworks.py
to prepare FireTasks. You can pass inputArgs.yml as input arguments. Each FireTasks is associated with ia_path and imgdir. It's like lining balls of fireworks without fire.lpad get_fws
will check all the FireTasks you have prepared.
Now you can stack more tasks by passing different input arguments, or launch!
tmux
qlaunch -r rapidfire -m 10 --nlaunches infinite
ctrl+b d
FireWorks can submit a number of FireTasks you allow to run at a time. Let's say you have 100 folders; in the example above, you are running 10 jobs at a time.
It works in an active window, so when you close a terminal it stops working (submitted jobs will be running but FireWorks stops). tmux is just to open a new window where you can detach (ctrl+b, d) and come back (tmux a), so you can work on other things.
Ctrl+R is a convenient command for history search.