Skip to content

Instantly share code, notes, and snippets.

View melrom's full-sized avatar

Melissa melrom

  • California
View GitHub Profile
@melrom
melrom / keybase.md
Created March 23, 2018 17:06
keybase proof

Keybase proof

I hereby claim:

  • I am melrom on github.
  • I am melrom (https://keybase.io/melrom) on keybase.
  • I have a public key ASAqplYjgsfbuV0k6t7QNTXOkjLA52lwm_6hUq971C27hQo

To claim this, I am signing this object:

@melrom
melrom / stampede_remote_staging.py
Last active December 20, 2015 02:09
saga remote staging example
import os
import sys
import saga
import getpass
REMOTE_HOST = "login1.stampede.tacc.utexas.edu"
USERNAME = os.environ.get('USER')
WORKING_DIRECTORY = "/home1/02554/sagatut/XSEDETutorial/%s/SAGA" % USERNAME
def main():
@melrom
melrom / xsede13_saga_remote.py
Last active December 20, 2015 02:09
Remote Job Submission to Stampede
__author__ = "Ole Weidner"
__copyright__ = "Copyright 2012-2013, The SAGA Project"
__license__ = "MIT"
""" This examples shows how to run a job on a remote SLURM cluster
using the 'SLURM' job adaptor.
More information about the saga-python job API can be found at:
http://saga-project.github.com/saga-python/doc/library/job/index.html
@melrom
melrom / simple_ensemble.py
Created November 2, 2012 19:24
BigJob Example: Running a Simple Ensemble
import sys
import os
import time
sys.path.append(os.path.join(os.path.dirname(__file__), "../.."))
sys.path.insert(0, os.getcwd() + "/../")
from pilot import PilotComputeService, ComputeDataService, State
COORDINATION_URL = "redis://localhost:6379"