Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Vaulin authored and Nikita Vaulin committed Jul 23, 2023
1 parent 93bd1d6 commit 2641ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Metagenome_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def read_pathways(pathways_input: str) -> List[str]:

baseline_abundances = pd.read_csv(os.path.join('baseline_phenotypes', pheno + '.csv'), header=None, sep=',')
missing_genomes = pd.read_csv(os.path.join('baseline_phenotypes', 'missing_genomes', 'missing_genomes.csv'),
header=None, sep=',')
header=1, sep=',', names=['tax_id', 'species'])

baseline_abundances.columns = ['tax_id', 'species', 'mean_abundance', 'sd_abundance']
baseline_abundances = drop_missing_genomes(baseline_abundances, missing_genomes)
Expand Down

0 comments on commit 2641ee5

Please sign in to comment.