We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97821e9 commit fcb02faCopy full SHA for fcb02fa
pypiper/const.py
@@ -1,6 +1,5 @@
1
""" Pypiper constants. """
2
3
-
4
CHECKPOINT_EXTENSION = ".checkpoint"
5
DEFAULT_SAMPLE_NAME = "DEFAULT_SAMPLE_NAME"
6
PIPELINE_CHECKPOINT_DELIMITER = "_"
pypiper/ngstk.py
@@ -153,8 +153,7 @@ def get_file_size(self, filenames):
153
return sum([self.get_file_size(filename) for filename in filenames])
154
155
return round(
156
- sum([float(os.stat(f).st_size) for f in filenames.split(" ")])
157
- / (1024**2),
+ sum([float(os.stat(f).st_size) for f in filenames.split(" ")]) / (1024**2),
158
4,
159
)
160
0 commit comments