Skip to content

Commit c47884c

Browse files
authored
Merge pull request #102 from kathyxchen/master
Update minor version to 0.4.1 and add google group link
2 parents d5357fc + d646c61 commit c47884c

File tree

6 files changed

+16
-3
lines changed

6 files changed

+16
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ For a more detailed overview of the components in the Selene software developmen
6262

6363
![summary figure](docs/source/_static/img/selene_overview.png)
6464

65+
### Help
66+
67+
Please post bugs or feature requests to our Github [issues](https://github.com/FunctionLab/selene/issues).
68+
69+
Join our [Google group](https://groups.google.com/forum/#!forum/selene-sdk) if you have questions about the package, case studies, or model development.
70+
6571
## Documentation
6672

6773
The documentation for Selene is available [here](https://selene.flatironinstitute.org/).

docs/source/overview/cli.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The sections that follow describe in detail how the various components that make
55

66
We strongly recommend you read through the first 4 sections ([Overview](#overview), [Operations](#operations), [General configurations](#general-configurations), and [Model architecture](#model-architecture)) and then pick other sections based on your use case.
77

8+
Join our [Google group](https://groups.google.com/forum/#!forum/selene-sdk) if you have questions about the package, case studies, or model development.
9+
810
## Overview
911
Selene's CLI accepts configuration files in the [YAML](https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html) format that are composed of 4 main (high-level) groups:
1012
1. list of operations

docs/source/overview/faq.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ The main modules that users may want to extend are
88
- `selene_sdk.targets.Target`
99

1010
Please refer to the documentation for these classes.
11-
If you are interested in contributing new modules to Selene or requesting new functionality, please submit an issue to [Selene](https://github.com/FunctionLab/selene/issues) or e-mail <[email protected]>.
11+
If you are encounter a bug or have a feature request, please post to our Github [issues](https://github.com/FunctionLab/selene/issues). E-mail <[email protected]> if you are interested in being a contributor to Selene.
12+
13+
Join our [Google group](https://groups.google.com/forum/#!forum/selene-sdk) if you have questions about the package, case studies, or model development.
1214

1315
## Exporting a Selene-trained model to Kipoi
1416
We have provided an example of how to prepare a model for upload to [Kipoi's model zoo](http://kipoi.org/) using a model trained during case study 2. You can use [this example](https://github.com/FunctionLab/selene/tree/master/manuscript/case2/3_kipoi_export) as a starting point for preparing your own model for Kipoi. We have provided a script that can help to automate parts of the process.

docs/source/overview/overview.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,6 @@ Unlike the aforementioned submodules designed around individual concepts, the `u
7777
It provides diverse functionality at varying levels of flexibility.
7878
Some members of `utils` are general-purpose (e.g. configuration file parsing) while others have highly specific use cases (e.g. CLI logger initialization).
7979

80+
# Help
81+
82+
Join our [Google group](https://groups.google.com/forum/#!forum/selene-sdk) if you have questions about the package, case studies, or model development.

selene_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.0"
1+
__version__ = "0.4.1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
cmdclass = {'build_ext': build_ext}
2626

2727
setup(name="selene-sdk",
28-
version="0.4.0",
28+
version="0.4.1",
2929
long_description=long_description,
3030
long_description_content_type='text/markdown',
3131
description=("framework for developing sequence-level "

0 commit comments

Comments
 (0)