Skip to content

Commit

Permalink
Some quick fixes to migration breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmymathews committed Sep 20, 2024
1 parent 26de250 commit d951969
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Merge TIFF channel file data and aggregate over cell segments."""

import sys
import warnings

from pandas import DataFrame
Expand All @@ -9,7 +10,9 @@
from numpy import isnan

from _extraction_formats import create_sparse_dataframe # pylint: disable=E0611
from ...convenience_scripts.bimodality_assessor import BimodalityAssessor

sys.path.append('../../convenience_scripts')
from bimodality_assessor import create_bimodal_vector

def aggregate_cell(group: DataFrame, channel_name: str) -> float:
with warnings.catch_warnings():
Expand Down
2 changes: 2 additions & 0 deletions data_curation/datasets/moldoveanu/extract.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p generated_artifacts/

if [[ ! -d CP_output_tiff ]];
then
filebase="Moldoveanu2022-cytof-RAW"
Expand Down

0 comments on commit d951969

Please sign in to comment.