You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the stdout log is inconsistently formatted, or is incorrect. See examples below.
There are several cases where large numbers are displayed with , separating 1000's. There are some cases where no ,'s are used.
>>> 2022-02-17 16:14:29:442676: Done.
>>> 2022-02-17 16:14:29:442723: 2500000 guides evaluated.
>>> 2022-02-17 16:14:29:442841: This batch ran in 01 00:40:21 (dd hh:mm:ss) or 2421.1502072811127 seconds
>>> 2022-02-17 16:14:29:442913: Processing batch file 2 of 7
>>> 2022-02-17 16:14:35:888107: Loaded 2,500,000 guides
>>> 2022-02-17 16:14:35:888266: CHOPCHOP - remove those without G in position 20.
>>> 2022-02-17 16:15:13:670180: 773,162 of 1,043,323 failed here.
...
In the run that produced this output, the batch size was set to 2.5m guides, yet, below, on the second line, it says the page will contain 5m guides.
The page size would not be larger than the batch size.
I believe pageSize = min(batchSize, maxPageSize, actualPageSize) would be more accurate.
Also, notice the lack of commas again.
Some of the stdout log is inconsistently formatted, or is incorrect. See examples below.
There are several cases where large numbers are displayed with
,
separating 1000's. There are some cases where no,
's are used.In the run that produced this output, the batch size was set to 2.5m guides, yet, below, on the second line, it says the page will contain 5m guides.
The page size would not be larger than the batch size.
I believe
pageSize = min(batchSize, maxPageSize, actualPageSize)
would be more accurate.Also, notice the lack of commas again.
The text was updated successfully, but these errors were encountered: