Skip to content

Releases: cytomining/pycytominer

v1.1.0 (2024-03-13)

13 Mar 16:02
2cd5ad5
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1.1.0

v1.0.1 (2023-11-09)

09 Nov 12:15
95396f3
Compare
Choose a tag to compare

What's Changed

  • fix(collate): make optional dependency imports localized by @kenibrewer in #351
  • fix(docs): add dynamic versioning to docs build by @kenibrewer in #353

Full Changelog: v1.0.0...v1.0.1

v1.0.0 Release

01 Nov 01:56
015db95
Compare
Choose a tag to compare

Pycytominer v1.0.0 Release

What's Changed

  • Updating __about__.py version and fixing pyPI upload action by @gwaybio in #209
  • Use numpy to calculate pearson corr of non NaN matrices by @johnarevalo in #193
  • Implementing DeepProfiler single cell output and normalization by @roshankern in #210
  • Fix #192 warnings for scipy mad func and other deprecated params by @johnarevalo in #194
  • Fix of .merge_single_cells() to Load Single-Cell Data into Dataframes by @bunnech in #219
  • Add column numbers to DP locations by @roshankern in #218
  • Add to Function Converting SQLite to Pandas DataFrame and Merging of Additional Metadata by @bunnech in #228
  • Address Installation Dependency Gaps by @d33bs in #232
  • Enable custom image table name for SQLite queries in cells.py by @gwaybio in #235
  • Enable flexible pyarrow dependency by @d33bs in #236
  • Change drop_outlier default to 500 by @bethac07 in #238
  • Added check before dropping well column by @kenibrewer in #241
  • Allow column subsetting at the time of loading by @bethac07 in #246
  • Reflect updated defaults in collate documentation by @bethac07 in #244
  • avoid re-validation for excluded features by @johnarevalo in #243
  • Add float_datatype parameter for SingleCells compartment load and merge performance flexibility by @d33bs in #248
  • Pin SQLAlchemy below 2 by @bethac07 in #251
  • Make AWS obey excludes by @bethac07 in #256
  • Implementing parquet loading in load_profiles function by @axiomcura in #262
  • pin scipy <1.9 by @ErinWeisbart in #258
  • New cyto tool: create cell locations file by @shntnu in #257
  • Adding gitpod, codespaces, devcontainer configs along with pre-commit code formatting using black and prettier by @kenibrewer in #264
  • make default unique_cut value for variance_threshold consistent with feature_select by @alxndrkalinin in #283
  • cell_locations: Writing output to S3 was failing; fixed this by @shntnu in #271
  • load_profiles should work with PurePath types by @gwaybio in #285
  • Change variance_threshold default to 0.01 by @shntnu in #286
  • Update python versions - 3.7 deprecation, 3.10 and 3.11 testing support by @gwaybio in #287
  • Github actions pre-commit CI pipeline by @kenibrewer in #279
  • Update README in preparation for version 1 release by @gwaybio in #289
  • Run pre-commit (black, prettier) on all files by @gwaybio in #291
  • Changed function arguments throughout pycytominer from str 'none' to None by @kenibrewer in #293
  • Update docs by @gwaybio in #290
  • logo touchup by @vincerubinetti in #300
  • Add pipeline-examples tutorial by @niranjchandrasekaran in #297
  • [Hot Fix] README figure wonk by @gwaybio in #295
  • Add issue templates by @jenna-tomkinson in #296
  • Add informative merge suffixes for platemap and external metadata column collisions by @kenibrewer in #292
  • Adding Pycytominer General Walkthrough Tutorial for RTD Website by @axiomcura in #305
  • Add "output_type" parameter to major functions by @jenna-tomkinson in #307
  • Make sample argument uniform for normalize and feature_select by @gwaybio in #311
  • Switch build from setuptools to Poetry and move tests path by @kenibrewer in #303
  • added ipython to rtd requirments file by @axiomcura in #309
  • Remove master branch references after migrating to main by @kenibrewer in #324
  • Bump urllib3 from 1.26.16 to 1.26.17 by @dependabot in #326
  • [Refactor] Migrate dependencies in docs/requirements.txt to pyproject.toml by @kenibrewer in #325
  • Bump urllib3 from 1.26.17 to 1.26.18 by @dependabot in #329
  • refactor(devcontainer): move vscode settings into devcont config by @kenibrewer in #336
  • fix(devcontainer): install poetry via devcontainer feature by @kenibrewer in #337
  • docs: update CITATION.cff and pyproject.toml authors by @kenibrewer in #339
  • fix(build): fix optional poetry dependencies by @kenibrewer in #338
  • feat(build): enable poetry-dynamic-versioning and cz changelog by @kenibrewer in #341
  • fix(dev): remove gitpod support and update docs by @kenibrewer in #347
  • feat: add commitizen cli and commit standards by @kenibrewer in #340
  • feat: refactor integration pipeline and add poetry-dynamic-versioning support by @kenibrewer in #342
  • bump: version 0.2.0 → 1.0.0 by @kenibrewer in #348

New Contributors

Full Changelog: v0.2.0...v1.0.0

Supporting CellProfiler output data collation

17 Jun 22:18
f8ce3b4
Compare
Choose a tag to compare

Pycytominer now fully supports CellProfiler analyses directly from CellProfiler output files.

What's Changed

Full Changelog: v0.1.5...v0.2.0

Minor bump to 0.1.5 in preparation for collate-specific release

17 Jun 22:14
9bb63c2
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1...v0.1.5

Initial release of pycytominer

08 Feb 20:29
ea3340c
Compare
Choose a tag to compare

Pycytominer release v0.1

Pycytominer is a python package that implements functions for every step of the image-based profiling pipeline.

Processing image-based readouts of cell morphology, we can now:

  • aggregate single cells to form bulk profiles
  • subsample single cells to form pseudo bulk replicates
  • normalize both single cells and bulk profiles
  • apply feature selection functions to remove uninformative morphology features
  • generate consensus signatures from replicates

The package currently has 98% test coverage and is fully documented with some examples. We hope that you enjoy using pycytominer, and please report bugs, make recommendations, and discuss any ideas you might have.

What's Changed

  • Adding Initial Functions by @gwaygenomics in #1
  • Update LICENSE file by @gwaygenomics in #2
  • Adding Travis yml by @gwaygenomics in #3
  • Add normalize function by @gwaygenomics in #4
  • Adding setup.py by @gwaygenomics in #7
  • Add Cytominer Authors to Setup by @gwaygenomics in #8
  • Add Covariance Functions by @gwaygenomics in #9
  • Adding sparse random projection by @gwaygenomics in #10
  • Adding Whitening Transform Method by @gwaygenomics in #13
  • Adding feature_select.py function by @gwaygenomics in #15
  • Adding Feature Select Testing by @gwaygenomics in #17
  • Updating aggregate to work with sqlite files by @gwaygenomics in #16
  • Adding random state set function in aggregate.py by @gwaygenomics in #18
  • Add sqlalchemy to setup.py by @gwaygenomics in #19
  • Adding codecov to travis by @gwaygenomics in #20
  • Adding annotate.py by @gwaygenomics in #21
  • Updating normalize.py by @gwaygenomics in #23
  • Updating feature_select.py by @gwaygenomics in #24
  • Inferring Features in feature_select.py by @gwaygenomics in #27
  • Add Audit by @gwaygenomics in #33
  • Try to coerce string input for subsample_n by @gwaygenomics in #34
  • [hotfix] save quantile in audit by @gwaygenomics in #35
  • [hotfix] make sure to enable audit output! by @gwaygenomics in #36
  • Adding option to compress output data by @gwaygenomics in #40
  • Blacklist features by @gwaygenomics in #41
  • Inferring Cell Painting Features by @gwaygenomics in #42
  • Add whitening by @gwaygenomics in #43
  • Refactor Before PooledCellPainting by @gwaygenomics in #44
  • Adding PooledCellPainting by @gwaygenomics in #45
  • Add Init File in Pooled by @gwaygenomics in #46
  • [Pooled] try to convert columns to numeric by @gwaygenomics in #47
  • Adding MODZ Consensus Signature Operation by @gwaygenomics in #53
  • Fixing MODZ to behave properly when not all metadata columns are specified by @gwaygenomics in #55
  • Add write_gct function by @gwaygenomics in #56
  • Upgrading Audit Functionality by @gwaygenomics in #60
  • Functionality to Drop Outlier Features by @gwaygenomics in #62
  • Fix aggregate dtype bug by @gwaygenomics in #65
  • Remove kwargs everywhere by @gwaygenomics in #66
  • Allowing feature and metadata feature setting in write_gct by @gwaygenomics in #67
  • Add Feature Metadata to writing gct file by @gwaygenomics in #68
  • Adding Robust Normalization by MAD by @gwaygenomics in #72
  • Fix mad_robustize policy on low variance columns by @gwaygenomics in #74
  • Enable cell counting with more than 2 defined strata by @gwaygenomics in #76
  • Add CMAP options to annotate by @gwaygenomics in #73
  • Abstract loading profiles and platemap by @gwaygenomics in #84
  • Adding CSV sniffing for delimiters by @gwaygenomics in #85
  • Fix missing value in variance threshold error by @gwaygenomics in #86
  • Fix write_gct too much strip by @gwaygenomics in #87
  • Switch to "samples='all'" as default and move operations to subfolder by @gwaygenomics in #88
  • Updating whitening implementations by @gwaygenomics in #91
  • clean pycytominer folder base to include core functionality by @gwaygenomics in #92
  • changed whiten_method default by @AdeboyeML in #97
  • Fix gzip sniffer by @gwaygenomics in #98
  • Refactor the consensus.py file to keep consistent API by @gwaygenomics in #101
  • Change whiten nomenclature to spherize by @gwaygenomics in #102
  • increase modularity of infer_cp_features by @hillsbury in #103
  • Setting up auto documentation with sphinx by @gwaygenomics in #104
  • Updating theme and fixing RTD integration by @gwaygenomics in #105
  • Adding pytest to requirements by @gwaygenomics in #106
  • documentation edits by @bethac07 in #108
  • Adding single cell module by @gwaygenomics in #111
  • Updating consensus.py to also work with input files by @gwaygenomics in #115
  • Output compression to ignore timestamps by @gwaygenomics in #119
  • Subsampling at the point of single cell merging by @gwaygenomics in #121
  • Refactoring annotate by @gwaygenomics in #118
  • Fixing sphinx docs by @gwaygenomics in #124
  • [hotfix] rename requirements doc by @gwaygenomics in #125
  • Adding epsilon parameter to spherize by @gwaygenomics in #132
  • Fix aggregate dropping samples by @gwaygenomics in #134
  • Modify aggregate by @niranjchandrasekaran in #129
  • Adding open source guideline documents by @gwaygenomics in #136
  • Update README with Cell Painting paper URL by @shntnu in #139
  • Set default object_feature to Metadata_ObjectNumber by @niranjchandrasekaran in #143
  • Adding pipeline figure and boosting README by @gwaygenomics in #145
  • Adding functionality to aggregate and annotate DeepProfiler output by @gwaygenomics in #78
  • Replace travis with github actions by @niranjchandrasekaran in #151
  • Replace aggregate_args by @niranjchandrasekaran in #148
  • Update DeepProfiler Processing by @michaelbornholdt in #149
  • add citation note by @gwaygenomics in #157
  • cells.aggregate_compartment() queries the database in chunks, reducing memory by @sjfleming in #156
  • Add "noise removal" feature selection by @ruifanp in #153
  • fix issue when some samples have replicates and some don't by @bethac07 in #166
  • Image features by @niranjchandrasekaran in #168
  • Add Metadata_ prefix to count features in the image table by @niranjchandrasekaran in #171
  • update pipeline by @michaelbornholdt i...
Read more