Skip to content
Snippets Groups Projects
Commit 8cf75ae3 authored by Luis Salamanca's avatar Luis Salamanca
Browse files

Correcting lfs

parent 2514c0ff
No related merge requests found
...@@ -33,9 +33,7 @@ folder_database = input_file.split(year_tocomp)[0] ...@@ -33,9 +33,7 @@ folder_database = input_file.split(year_tocomp)[0]
# Start of computation # Start of computation
t1 = time.time() t1 = time.time()
name_tar_file = input_file.split('/')[-1].split('.tar.gz')[0] # Downloading lfs files
files_proc, _ = utils_proc.get_list(year_tocomp, folder_database, name_tar_file)
print(input_file) print(input_file)
comm = 'git lfs pull -I ' + input_file comm = 'git lfs pull -I ' + input_file
utils_proc.call_with_out(comm) utils_proc.call_with_out(comm)
...@@ -43,6 +41,9 @@ input_file_xml = '/'.join(input_file.split('/')[:-1]) + '/01_rawmeta.tar.gz' ...@@ -43,6 +41,9 @@ input_file_xml = '/'.join(input_file.split('/')[:-1]) + '/01_rawmeta.tar.gz'
comm = 'git lfs pull -I ' + input_file_xml comm = 'git lfs pull -I ' + input_file_xml
utils_proc.call_with_out(comm) utils_proc.call_with_out(comm)
name_tar_file = input_file.split('/')[-1].split('.tar.gz')[0]
files_proc, _ = utils_proc.get_list(year_tocomp, folder_database, name_tar_file)
list_proc = list() list_proc = list()
for infile in files_proc: for infile in files_proc:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment