Skip to content

Commit

Permalink
fixed snakemake_main_filename issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SooLee committed Mar 31, 2021
1 parent c2561ee commit 9502201
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tibanna/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "1.1.3"
__version__ = "1.2.0"
5 changes: 3 additions & 2 deletions tibanna/ec2_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def auto_fill(self):
"""
args = self.args
cfg = self.cfg
args.fill_default()
cfg.fill_language_options(args.language, getattr(args, 'singularity', False))
cfg.fill_other_fields(args.app_name)
# sanity check
Expand Down Expand Up @@ -118,8 +119,8 @@ def __init__(self, fill_default=True, **kwargs):
for field in ['output_S3_bucket']:
if not hasattr(self, field):
raise MissingFieldInInputJsonException("field %s is required in args" % field)
if fill_default:
self.fill_default()
#if fill_default:
# self.fill_default()

def update(self, d):
for k, v in d.items():
Expand Down

0 comments on commit 9502201

Please sign in to comment.