-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from ryanharvey1/7-add-github-workflow
fixes for github workflow tests
- Loading branch information
Showing
7 changed files
with
615 additions
and
44 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,14 @@ | |
This implementation was written in Feb 2019. | ||
Please e-mail me if you have comments, doubts, bug reports or criticism (Vítor, [email protected] / [email protected]). | ||
""" | ||
import warnings | ||
|
||
import numpy as np | ||
|
||
import warnings | ||
from typing import Tuple, Union | ||
|
||
from scipy import stats | ||
from sklearn.decomposition import FastICA | ||
from sklearn.decomposition import PCA | ||
import numpy as np | ||
from lazy_loader import attach as _attach | ||
from scipy import stats | ||
from sklearn.decomposition import PCA, FastICA | ||
|
||
__all__ = ( | ||
"toyExample", | ||
|
@@ -227,7 +225,7 @@ def runPatterns( | |
|
||
if np.isnan(significance.nassemblies): | ||
return None, significance, None | ||
|
||
if significance.nassemblies < 1: | ||
warnings.warn("no assembly detected") | ||
|
||
|
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
Oops, something went wrong.