Skip to content

Commit f62a353

Browse files
limit decimal places in output formatting to handle CI/local differences
1 parent 63fc772 commit f62a353

File tree

3 files changed

+414
-414
lines changed

3 files changed

+414
-414
lines changed

notebooks/tellseq_B_concentration_estimation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@
455455
"outputs": [],
456456
"source": [
457457
"# format MINIPICO_LIB_CONC_KEY column to avoid floating point weirdness, then write out\n",
458-
"plate_df[MINIPICO_LIB_CONC_KEY] = plate_df[MINIPICO_LIB_CONC_KEY].map(lambda x: f\"{x:.17g}\")\n",
458+
"plate_df[MINIPICO_LIB_CONC_KEY] = plate_df[MINIPICO_LIB_CONC_KEY].map(lambda x: f\"{x:.16g}\")\n",
459459
"\n",
460460
"plate_df.to_csv(plate_df_fp, sep='\\t', index=False)"
461461
]

0 commit comments

Comments
 (0)