We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112ab88 commit a516384Copy full SHA for a516384
coderbuild/broad_sanger/05b_separate_datasets.py
@@ -42,7 +42,7 @@ def main():
42
exp_improve_drug_ids = exp["improve_drug_id"].unique().to_list()
43
44
#Ensure that the improve_sample_id column is in integer form.
45
- exp = exp.with_column(pl.col("improve_sample_id").cast(pl.Float64).cast(pl.Int64))
+ exp = exp.with_columns(pl.col("improve_sample_id").cast(pl.Float64).cast(pl.Int64))
46
47
# Write Filtered Experiments File to TSV. Then delete it from memory.
48
exp_filename_out = f"/tmp/{dataset}_experiments.tsv".lower()
0 commit comments