Skip to content

Commit

Permalink
Increase etaBuffer for more stability in eta calculation on text-inde…
Browse files Browse the repository at this point in the history
…x cli
  • Loading branch information
cmdcolin committed Sep 2, 2021
1 parent fd77b99 commit 30c5d73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions products/jbrowse-cli/src/types/gff3Adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export async function* indexGff3(
const progressBar = new SingleBar(
{
format: '{bar} ' + trackId + ' {percentage}% | ETA: {eta}s',
etaBuffer: 200,
},
Presets.shades_classic,
)
Expand Down
1 change: 1 addition & 0 deletions products/jbrowse-cli/src/types/gtfAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export async function* indexGtf(
const progressBar = new SingleBar(
{
format: '{bar} ' + trackId + ' {percentage}% | ETA: {eta}s',
etaBuffer: 200,
},
Presets.shades_classic,
)
Expand Down
1 change: 1 addition & 0 deletions products/jbrowse-cli/src/types/vcfAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export async function* indexVcf(
const progressBar = new SingleBar(
{
format: '{bar} ' + trackId + ' {percentage}% | ETA: {eta}s',
etaBuffer: 200,
},
Presets.shades_classic,
)
Expand Down

0 comments on commit 30c5d73

Please sign in to comment.