diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2020-02-06 17:37:57 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2020-02-06 17:37:57 +0800 |
commit | 97db795240795d947241ff30a8beafbd3aca93b8 (patch) | |
tree | 00d8de082d7c54f1554aa50c0204e6466f6f10d0 /Code/update_network.py | |
parent | a93b28f0e147ae51c06254132c22e7460ad3d70a (diff) |
backup_files.py: fix misspelling
Diffstat (limited to 'Code/update_network.py')
-rwxr-xr-x | Code/update_network.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Code/update_network.py b/Code/update_network.py index 672dc1e..3feae6c 100755 --- a/Code/update_network.py +++ b/Code/update_network.py @@ -500,22 +500,22 @@ def create_edges0(): # The following commands are optional. For example, if a user wants to run it locally, he don't have to provide these TPM tables. if os.path.exists(PARAMETER_FOR_NET_TRAVADB_STRESS): - write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_TRAVADB_STRESS), UPDATE_NETWORK_LOG_FILE) + #write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_TRAVADB_STRESS), UPDATE_NETWORK_LOG_FILE) cmd = 'python3 create_edges0.py %s' % (PARAMETER_FOR_NET_TRAVADB_STRESS) #os.system(cmd) if os.path.exists(PARAMETER_FOR_NET_TRAVADB_MAP): - write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_TRAVADB_MAP), UPDATE_NETWORK_LOG_FILE) + #write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_TRAVADB_MAP), UPDATE_NETWORK_LOG_FILE) cmd = 'python3 create_edges0.py %s' % (PARAMETER_FOR_NET_TRAVADB_MAP) #os.system(cmd) if os.path.exists(PARAMETER_FOR_NET_MILD_DROUGHT): - write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_MILD_DROUGHT), UPDATE_NETWORK_LOG_FILE) + #write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_MILD_DROUGHT), UPDATE_NETWORK_LOG_FILE) cmd = 'python3 create_edges0.py %s' % (PARAMETER_FOR_NET_MILD_DROUGHT) #os.system(cmd) if os.path.exists(PARAMETER_FOR_NET_WIGGELAB_DIURNAL): - write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_WIGGELAB_DIURNAL), UPDATE_NETWORK_LOG_FILE) + #write_log_file('[update_network.py] Create simple edges.txt using create_edges0.py with %s' % (PARAMETER_FOR_NET_WIGGELAB_DIURNAL), UPDATE_NETWORK_LOG_FILE) cmd = 'python3 create_edges0.py %s' % (PARAMETER_FOR_NET_WIGGELAB_DIURNAL) #os.system(cmd) @@ -825,10 +825,10 @@ if 'TPM.txt' in updated_file_list: # we could touch TPM.txt to make it recent. record_file_time(FILE_LIST_TO_CHECK, FILE_TIMESTAMP) create_edges0() create_edges0B() - wedge() + wedge() correlation_per_group() correlation_per_group_fixed_number() - #correlation_mixtools(2) + correlation_mixtools(2) #correlation_mixtools(3) |