Skip to content

Commit 2727c04

Browse files
authored
Merge pull request #125 from mortonjt/version-1.0.3
Post release update
2 parents f0f890a + 2d9dd20 commit 2727c04

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Songbird Changelog
22

3+
## Version 1.0.3-dev
4+
35
## Version 1.0.2
46
Added ability to set random seed for CLI and sets fixed random seeds for qiime2 [#101](https://github.com/biocore/songbird/pull/101)
57

data/run.sh

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,33 @@ songbird multinomial \
1515
--batch-size 3 \
1616
--epochs 10000 \
1717
--num-random-test-examples 5 \
18+
--summary-dir summary1 \
19+
--summary-interval 1
20+
21+
22+
formula="Depth+Temperature+Salinity+Oxygen"
23+
songbird multinomial \
24+
--input-biom $biom \
25+
--metadata-file $mdfile \
26+
--formula $formula \
27+
--min-feature-count 10 \
28+
--batch-size 3 \
29+
--epochs 10000 \
30+
--num-random-test-examples 5 \
31+
--summary-dir summary2 \
32+
--summary-interval 1
33+
34+
35+
formula="Depth+Temperature"
36+
songbird multinomial \
37+
--input-biom $biom \
38+
--metadata-file $mdfile \
39+
--formula $formula \
40+
--min-feature-count 10 \
41+
--batch-size 3 \
42+
--epochs 10000 \
43+
--num-random-test-examples 5 \
44+
--summary-dir summary3 \
1845
--summary-interval 1
1946

2047
#Usage: songbird multinomial [OPTIONS]

songbird/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import warnings
22
warnings.filterwarnings("ignore", category=FutureWarning)
3-
__version__ = "1.0.3"
3+
__version__ = "1.0.3-dev"

0 commit comments

Comments
 (0)