Displaying 1 result from an estimated 1 matches for "putdots".
Did you mean:
  getdots
  
2010 Jan 29
0
[BioC] Suppress output from getGEO
...nload.file could be improved to avoid this sort of spamming output
seen previously with getGEO.  currently, it prints dots (when it does) in
5 10-packs per line, line after line.  instead, it could be repeatedly
printing them on the same line, to give it a more progress bar-like look.
the function putdots (src/modules/internet/internet.c:218) is responsible
for printing the dots.  after each 5x10 bunch of dots, it proceeds to the
next line:
    if((i+1) % 50 == 0) REprintf("\n");
but it could instead just swipe the dots and start in the same line again:
    if((i+1) % 50 == 0) REprintf(...