Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 2.68 KB

File metadata and controls

46 lines (31 loc) · 2.68 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.2.0

This version accompanies the human neural development paper preprint.

Features

  • updated to scverse template v0.6.0
  • added parameter to select pca svd solver for running PCA instead of hardcoded "covariance_eigh"
  • added functionality to save and load patterns to and from disk (tfmindi.save_patterns and tfmindi.load_patterns)
  • now allows for patterns to be generated by any annotation in .obs, not only by leiden
  • can now concatenate multiple TF-MINDI anndatas together using tfmindi.concat
  • changed behaviour of seqlet most frequent-occurence for annotating clusters to binomial tests
  • added MAFFT-based backend as option for pattern creation (much faster than TomTom or k-mer)

Bugfixes

  • fix extra 0-position being included in Pattern.ic_trim
  • fix failure case in in Pattern.ic_trim when all nucleotides are above IC threshold
  • plotting legends are filtered on colors in adata.obs[color_by]

1.1.0

Bugfixes, an updated seqlet calling algorithm, and new k-mer pattern tooling. Be aware that we're not entirely satisfied with the current seqlet calling algorithm, we're working on this for the next release.

  • Updated the recursive seqlet calling algorithm to match the latest version of tangermeme. This generally results in fewer but cleaner seqlets. WARNING: this algorithm now only seems to call positive seqlets (which we don't agree with). We're still working on an updated seqlet calling algorithm, but that will be for a next release. For now you can get around this by calling seqlets on absolute contribution scores.
  • Added new functionality to align seqlet instances based on the hamming distance to most frequently occuring kmer. Default remains tomtom for the time being though.
  • Consistent colormap keys added to anndata.uns that matches scanpy convention.
  • BREAKING CHANGE: All topic modeling results are now stored in the anndata, similar to the rest of the api. Topic modeling plotting functions will now also expect the anndata as input. Tutorial has been updated to match this breaking change.
  • The Pattern class now has additional functions to interact with calculated kmers (eget_unique_kmers, get_kmers, get_kmer_distances). Additionaly, the Seqlet class keeps track of the seqlet index (can be used to find back the seqlet in adata.obs).
  • Added an option to filter on min_seqlets in logo_plotting (useful in case of small, noisy clusters).

1.0.0

Initial release