We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49c7e22 + c76cfc8 commit 06bd0dfCopy full SHA for 06bd0df
2 files changed
CHANGELOG.md
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning][].
8
[keep a changelog]: https://keepachangelog.com/en/1.0.0/
9
[semantic versioning]: https://semver.org/spec/v2.0.0.html
10
11
+## 2.1.3
12
+
13
+### Changes
14
+- `pp.adjmat` now returns the same features as used as input instead of the subset of `net`.
15
16
17
## 2.1.2
18
19
### Added
src/decoupler/pp/net.py
@@ -192,7 +192,7 @@ def adjmat(
192
adjm = _order(features, targets, adjm)
193
m = f"Network adjacency matrix has {targets.size} unique features and {sources.size} unique sources"
194
_log(m, level="info", verbose=verbose)
195
- return sources, targets, adjm
+ return sources, features, adjm
196
197
198
@docs.dedent
0 commit comments