Metadata-Version: 1.1
Name: bsub
Version: 0.3
Summary: submit jobs to LSF with python
Home-page: https://github.com/brentp/bsub
Author: Brent Pedersen, Joe Brown
Author-email: bpederse@gmail.com
License: MIT
Description: bsub
        ====
        
        python wrapper to submit jobs to bsub (and later qsub)
        
        Authors
        ------
        @brentp, @brwnj
        
        
        Example
        -------
        
        ```python
        >>> from bsub import bsub
        >>> sub = bsub("some_job", R="rusage[mem=1]", verbose=True)
        
        # submit a job via call'ing the sub object with the command to run.
        # the return value is the numeric job id.
        >>> print sub("date").job_id.isdigit()
        True
        
        # 2nd argument can be a shell script, in which case
        # the call() is empty.
        #>>> bsub("somejob", "run.sh", verbose=True)()
        
        # dependencies:
        >>> job_id = bsub("sleeper", verbose=True)("sleep 2").job_id
        >>> bsub.poll(job_id)
        True
        
        ```
        
        
        Chaining
        --------
        
        It's possible to specify dependencies to LSF using a flag like:
        
           bsub -w 'done("other-name")' < myjob
        
        We make this more pythonic with:
        
        ```Python
        
        >>> j = sub('sleep 1').then('sleep 2')
        
        ```
        which will wait for the first job `sleep 1` to complete
        before running the second job `sleep 2`. These can be chained as:
        
        ```Python
        
        j = sub('myjob')
        j2 = j('sleep 1')
        j3 = j2.then('echo "hello"')
        j4 = j3.then('echo "world"')
        j5 = j4.then('my scripts.p')
        
        # or:
        
        j('sleep 1').then('echo "hello"').then('echo "world"')
        
        ```
        Where each job in `.then()` is not run until the preceding job
        is `done()` according to LSF>
        
        
        Command-Line
        ------------
        
        use the command-line to poll for running jobs:
        
        
        ```Shell
        python -m bsub 12345 12346 12347
        ```
        
        will block until those 3 jobs finish.
        
Keywords: cluster lsf bsub
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
