-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdfb8a3
commit 3b4a4c1
Showing
1 changed file
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
# Condor-Submit | ||
A python script to avoid .sub description file to start job on HTCondor cluster | ||
# Condor-Tools | ||
A set of python script to interact with HTCondor cluster | ||
|
||
## csub | ||
csub is a submit script. It allow user to avoid .sub file creation to submit job to HTCondor. | ||
The simplest usage of csub it's job the name of the binary you want launch | ||
|
||
user@machine> csub /path/to/script | ||
|
||
All options are available with the command --help | ||
|
||
user@machine> csub --help | ||
usage: csub [-h] [--args ARGUMENTS] [--group GROUP] [--machine MACHINE] | ||
[--input INPUT_FILES] [--output OUTPUT_FILES] [--cpus CPUS] | ||
script | ||
|
||
Condor submit wrapper to improve user experience | ||
|
||
positional arguments: | ||
script /path/to/script you want run | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
--args ARGUMENTS Arguments for your script | ||
--group GROUP Condor group you want to use (based on Unix group) | ||
--machine MACHINE Define a specific machine you want use (should be the | ||
full hostname of the machine) | ||
--input INPUT_FILES A list of input file | ||
--output OUTPUT_FILES | ||
A list of output file | ||
--cpus CPUS Number of CPUs you need |