Skip to content

Commit

Permalink
switch to not drop nulls by default (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwaybio authored Jul 28, 2023
1 parent 4ffbe9f commit 9fafa0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cytotable/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ def convert( # pylint: disable=too-many-arguments,too-many-locals
chunk_columns: Optional[Union[List[str], Tuple[str, ...]]] = None,
chunk_size: Optional[int] = None,
infer_common_schema: bool = True,
drop_null: bool = True,
drop_null: bool = False,
data_type_cast_map: Optional[Dict[str, str]] = None,
preset: Optional[str] = "cellprofiler_csv",
parsl_config: Optional[parsl.Config] = None,
Expand Down Expand Up @@ -1225,7 +1225,7 @@ def convert( # pylint: disable=too-many-arguments,too-many-locals
Size of join chunks which is used to limit data size during join ops
infer_common_schema: bool: (Default value = True)
Whether to infer a common schema when concatenating sources.
drop_null: bool (Default value = True)
drop_null: bool (Default value = False)
Whether to drop nan/null values from results
preset: str (Default value = "cellprofiler_csv")
an optional group of presets to use based on common configurations
Expand Down

0 comments on commit 9fafa0d

Please sign in to comment.