Skip to content

Commit 1a82dc3

Browse files
mihailescumMax Mihailescu
andauthored
* Added preprocess function * Added preprocess function for mstump * Added motif discovery and basic tests * Added naive find_occurrences * Renamed motifs.py to search.py and added k_discords * Fixed motif test * Changed search.py * Fixed Issue stumpy-dev#198 * Refactored motif discovey * Removed a line * Formatting * Restructured motif code and tests * Switched to new black version * Added aamp functionality to motif discovery * Renamed occurrences to match * Fixed last open comments * Added explanation to pattern search tutorial * Run notebook again * Updated tutorial * Updated tutorial to include comments * Added binder link Co-authored-by: Max Mihailescu <[email protected]>
1 parent bf66a4b commit 1a82dc3

File tree

5 files changed

+1004
-561
lines changed

5 files changed

+1004
-561
lines changed

docs/Tutorial_Pattern_Matching.ipynb

Lines changed: 1001 additions & 0 deletions
Large diffs are not rendered by default.

docs/Tutorial_Pattern_Searching.ipynb

Lines changed: 0 additions & 559 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../docs/Tutorial_Pattern_Matching.ipynb

notebooks/Tutorial_Pattern_Searching.ipynb

Lines changed: 0 additions & 1 deletion
This file was deleted.

stumpy/motifs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
import numpy as np
88
from .aamp_motifs import aamp_motifs, aamp_match
99

10-
from . import core, config
10+
from . import core
11+
from . import config
1112

1213
logger = logging.getLogger(__name__)
1314

0 commit comments

Comments
 (0)