Skip to content

Draft:Parallelize mutation time plots

David Fischer requested to merge parallelize_mutation_time_plots into master
  • parallelize combine_mutations_of_same_codon calls in create_global_SNP_df and create_country_metadata_SNP_df with ray
  • replace pd.merge with pd.join in create_country_metadata_SNP_df for faster df merging
  • replace df.replace with series.map for less overhead
  • replace datetime.strptime with datetime.fromisocalendar to avoid string parsing overhead
  • replace np.where with series.index[] which has less overhead
Edited by David Fischer

Merge request reports