Added support for submitting jobs to the Open Science Grid
Compare changes
Files
2- Duncan Macleod authored
This commit is a little larger than planned, but does the following: - abstracts checkpointing options to a method, and updates them to the minimal working set - abstracts condor file transfer options to a method, and implements for pesummary jobs - adds OSG running options to jobs and the `--osg` command-line option for `bilby_pipe` The above necessitated a bit of restructuring in some methods to support adding extra `requirements` for jobs
+ 118
− 24
@@ -81,6 +81,7 @@ class MainInput(Input):
@@ -475,6 +476,8 @@ class Dag(object):
@@ -483,6 +486,14 @@ class Dag(object):
@@ -509,7 +520,7 @@ class Dag(object):
@@ -591,26 +602,20 @@ class Dag(object):
@@ -622,15 +627,18 @@ class Dag(object):
@@ -659,7 +667,7 @@ class Dag(object):
@@ -684,6 +692,7 @@ class Dag(object):
@@ -695,6 +704,11 @@ class Dag(object):
@@ -703,7 +717,7 @@ class Dag(object):
@@ -739,6 +753,8 @@ class Dag(object):
@@ -755,6 +771,11 @@ class Dag(object):
@@ -763,7 +784,7 @@ class Dag(object):
@@ -843,6 +864,8 @@ class Dag(object):
@@ -851,6 +874,20 @@ class Dag(object):
@@ -876,7 +913,7 @@ class Dag(object):
@@ -942,6 +979,63 @@ class Dag(object):