Skip to content

Commit

Permalink
Merge pull request #34 from BojarLab/dev
Browse files Browse the repository at this point in the history
merge for version update
  • Loading branch information
Bribak authored Jan 31, 2024
2 parents 40b04d7 + 4d5cd61 commit d7502e9
Show file tree
Hide file tree
Showing 64 changed files with 43,093 additions and 72,782 deletions.
4,580 changes: 2,284 additions & 2,296 deletions 00_core.ipynb

Large diffs are not rendered by default.

11,895 changes: 6,090 additions & 5,805 deletions 01_glycan_data.ipynb

Large diffs are not rendered by default.

171 changes: 30 additions & 141 deletions 02_ml.ipynb

Large diffs are not rendered by default.

7,658 changes: 4,117 additions & 3,541 deletions 03_motif.ipynb

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions 04_network.ipynb

Large diffs are not rendered by default.

12,396 changes: 6,213 additions & 6,183 deletions 05_examples.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@ nbdev_prepare
* Docs are automatically created from the notebooks in the nbs folder.


## Wishlist for future glycowork updates (last update: 2023-12-04)
## Wishlist for future glycowork updates (last update: 2024-01-31)
#### Urgent
* more, and more informative, error messages


#### At some point
* any further expansion of our universal input pipeline, to cover more usecases etc.
* split motif_list into ‘core’ motifs (occurring frequently) and ‘extended’ motifs (that are rare or niche) for performance reasons
* characterize_monosaccharide only factors in subsequent sequence context; make it possible (as an option) to also consider upstream sequence context
* allow users to specify their own deep learning architecture in ml.models
Expand Down
46 changes: 24 additions & 22 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _proc/.quarto/xref/INDEX
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"index.ipynb": {
"README.md": "f518931d"
"README.md": "1bce5a52"
}
}
4,580 changes: 2,284 additions & 2,296 deletions _proc/00_core.ipynb

Large diffs are not rendered by default.

11,916 changes: 6,109 additions & 5,807 deletions _proc/01_glycan_data.ipynb

Large diffs are not rendered by default.

73 changes: 28 additions & 45 deletions _proc/02_ml.ipynb

Large diffs are not rendered by default.

7,893 changes: 4,241 additions & 3,652 deletions _proc/03_motif.ipynb

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions _proc/04_network.ipynb

Large diffs are not rendered by default.

12,406 changes: 6,219 additions & 6,187 deletions _proc/05_examples.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion _proc/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@ nbdev_prepare
* Docs are automatically created from the notebooks in the nbs folder.


## Wishlist for future glycowork updates (last update: 2023-12-04)
## Wishlist for future glycowork updates (last update: 2024-01-31)
#### Urgent
* more, and more informative, error messages


#### At some point
* any further expansion of our universal input pipeline, to cover more usecases etc.
* split motif_list into ‘core’ motifs (occurring frequently) and ‘extended’ motifs (that are rare or niche) for performance reasons
* characterize_monosaccharide only factors in subsequent sequence context; make it possible (as an option) to also consider upstream sequence context
* allow users to specify their own deep learning architecture in ml.models
Expand Down
246 changes: 123 additions & 123 deletions _proc/_docs/index_files/figure-commonmark/cell-3-output-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
361 changes: 157 additions & 204 deletions _proc/index.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _proc/settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ lib_name = glycowork
repo_name = glycowork
host = github
user = BojarLab
version = 1.0.0
version = 1.0.1
min_python = 3.8
audience = Developers
custom_sidebar = False
Expand Down
11 changes: 7 additions & 4 deletions _proc/setup
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:

setuptools.setup(
name="glycowork",
version="1.0.0",
version="1.1.0",
author="Daniel Bojar",
author_email="daniel.bojar@gu.se",
description="Package for processing and analyzing glycans",
Expand All @@ -27,10 +27,13 @@ setuptools.setup(
"pandas>=1.3", "matplotlib-inline",
"python-louvain"],
extras_require={'all':["torch_geometric", "CairoSVG",
"drawSvg~=2.0", "glyles", "pubchempy", "requests"],
"drawSvg~=2.0", "glyles", "pubchempy", "requests",
"Pillow", "openpyxl"],
'dev':["torch_geometric", "CairoSVG",
"drawSvg~=2.0", "glyles", "pubchempy", "requests"],
"drawSvg~=2.0", "glyles", "pubchempy", "requests",
"Pillow", "openpyxl"],
'ml':["torch_geometric"],
'draw':["CairoSVG", "drawSvg~=2.0"],
'draw':["CairoSVG", "drawSvg~=2.0", "Pillow",
"openpyxl"],
'chem':["glyles", "pubchempy", "requests"]},
)
4 changes: 2 additions & 2 deletions build/lib/glycowork/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
#from .glycowork import *

__all__ = ['alignment', 'ml', 'motif', 'glycan_data']
__all__ = ['ml', 'motif', 'glycan_data', 'network']
Empty file.
Loading

0 comments on commit d7502e9

Please sign in to comment.