######################################################
#
# Make a copy of this file and edit it to your liking
#
######################################################

# Which population to plot
species_names = ["Bacteroides_cellulosilyticus_58046", "Alistipes_sp_60764"] #, "Bacteroides_coprocola_61586", "Bacteroides_caccae_53434", "Bacteroides_faecis_58503", "Butyrivibrio_crossotus_61674", "Bacteroides_massiliensis_44749"]
 
# Output filename
filename = parse_midas_data.analysis_directory+'other_sweeps_figure.pdf'
stats_filename = parse_midas_data.analysis_directory+'other_sweeps_stats_figure.pdf'
output_filename = parse_midas_data.analysis_directory+'other_sweeps_figure_snps.txt'

plot_genes = False


####################################################################
#
#  Function controlling which mutations are colored
#
#      Returns: true for colored
#               false for not colored
#
####################################################################
def color_rule_in_condition(population_idx, chromosome, location, gene_name, variant_type, times, freqs, depths):
    
    condition = True
    
    return condition
    
def color_rule_out_condition(population_idx, chromosome, location, gene_name, variant_type, times, freqs, depths):
    
    condition = False
    
    return condition
