-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix major bug in v0.3.1: negative counts #347
Merged
Merged
Changes from 9 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
417cd5a
Update gitignore
sjfleming 228d434
Github actions run on master and dev PRs only
sjfleming d68c515
issue #348 lxml_html_clean dependency
sjfleming b73fd56
Fix #306: noise count integer overflow
sjfleming 4bdc4f4
Make dtypes more explicit
sjfleming dc8daad
Unit test that fails before fix
sjfleming 4ee2350
integration test for negative outputs: also fails before fix
sjfleming 95f0136
Conversion to torch was a problem from uints
sjfleming 1cb8479
Correct a test that was unfairly failing when gene dtype was int32
sjfleming 2b11727
More informative print statement in test
sjfleming 411cc39
Failsafe to ensure no negative entries in output
sjfleming 1fd390f
Introduce --force-use-checkpoint for redoing v0.3.1 runs
sjfleming 2ba1b93
Add a warning to the README about v0.3.1
sjfleming e04f30b
rst warning does not render in github readme
sjfleming 00901cb
Another attempt at rst rendering
sjfleming 49a3e3e
Add the word "warning"
sjfleming 2548446
Fix test failure introduced by --force-use-checkpoint
sjfleming File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,9 @@ | |
|
||
name: 'packaging' | ||
|
||
on: pull_request | ||
on: | ||
pull_request: | ||
branches: [ master, dev ] | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,9 @@ | |
|
||
name: 'pytest' | ||
|
||
on: pull_request | ||
on: | ||
pull_request: | ||
branches: [ master, dev ] | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ dist/ | |
*.csv | ||
*.npz | ||
*.tar.gz | ||
data/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ jupyter | |
jupyter_contrib_nbextensions | ||
notebook<7.0.0 | ||
nbconvert<7.0.0 | ||
lxml_html_clean | ||
psutil |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Either remove the print statement, or convert it to something more informative-- e.g. old matrix shape = ..., new matrix shape = ...