Skip to content

Commit 7b7dbde

Browse files
author
Keara Michelle Lane
committed
modify arguments passed to call_fireworks
1 parent bf96e5a commit 7b7dbde

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

call_fireworks.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ def call_cluster(ia_path, args):
100100
action="store_true")
101101
parser.add_argument("-v", "--verbose", help="set logging level to DEBUG",
102102
action="store_true")
103+
parser.add_argument("-d", "--delete", help="delete extra files to save space",
104+
action="store_true")
105+
parser.add_argument("-c", "--clean", help="delete analyzed files if existed",
106+
action="store_true")
107+
parser.add_argument("-n", "--cores", help="number of cores for multiprocessing",
108+
type=int)
109+
parser.add_argument("-l", "--list", help="list all operations by calling help",
110+
action="store_true")
103111
parser.add_argument("-s", "--skip", help="skip if df.npz is already created",
104112
action="store_true")
105113
parser.add_argument("input", nargs="*", help="input argument file path")

0 commit comments

Comments
 (0)