File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 77- Added removal of duplicate IDs from ` reads_download ` component input.
88- Added seed parameter to ` downsample_fastq ` component.
99
10+ ### Bug fixes
11+
12+ - Fixed ` inspect ` issue when tasks took more than a day in duration.
13+
1014## 1.3.1
1115
1216### Features
Original file line number Diff line number Diff line change @@ -338,7 +338,10 @@ def _hms(s):
338338 if s .endswith ("ms" ):
339339 return float (s .rstrip ("ms" )) / 1000
340340
341- fields = list (map (float , re .split ("[hms]" , s )[:- 1 ]))
341+ fields = list (map (float , re .split ("[dhms]" , s )[:- 1 ]))
342+ if len (fields ) == 4 :
343+ return fields [0 ] * 24 * 3600 + fields [1 ] * 3600 + fields [2 ] * 60 + \
344+ fields [3 ]
342345 if len (fields ) == 3 :
343346 return fields [0 ] * 3600 + fields [1 ] * 60 + fields [2 ]
344347 elif len (fields ) == 2 :
You can’t perform that action at this time.
0 commit comments