diff options
-rw-r--r-- | Code/download_and_map.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Code/download_and_map.py b/Code/download_and_map.py index cf34026..3dfb68f 100644 --- a/Code/download_and_map.py +++ b/Code/download_and_map.py @@ -207,7 +207,7 @@ def download_and_map_data(lst, daily_map_num, dest): for link in url_lst: sz = get_remote_file_size(link) if sz >= MIN_FASTQ_FILE_SIZE: # remote file must be big enough - cmd = 'wget %s -P %s' % (link, dest) + cmd = 'wget -q %s -P %s' % (link, dest) os.system(cmd) file_path = os.path.join(dest, os.path.basename(link)) curr_lst.append(file_path) |