uncommented some debug output for mcsm, pandas and numpy conflict. So temporarily resolved it by running from base env

This commit is contained in:
Tanushree Tunstall 2021-02-11 10:53:23 +00:00
parent d159a81cfb
commit 2eab17cb9e
3 changed files with 9 additions and 4 deletions

View file

@ -163,7 +163,7 @@ def get_results():
output_df = pd.DataFrame()
url_counter = 1 # HURR DURR COUNT STARTEDS AT ONE1`!1
success_counter = 1
infile_len = os.popen('wc -l < %s' % result_urls).read() # quicker than using Python :-) #FIXME filenme (infile_urls)
infile_len = os.popen('wc -l < %s' % result_urls).read() # quicker than using Python :-)
print('Total URLs:', infile_len)
@ -181,7 +181,7 @@ def get_results():
url_counter += 1
print('Total URLs: %s Successful: %s Failed: %s' % (url_counter-1, success_counter-1, (url_counter - success_counter)))
#print('\nOutput file created:', output_dir + gene.lower() + '_mcsm_output.csv')
output_df.to_csv(mcsm_output, index = None, header = True)
#%%=====================================================================
def format_results():