Skip to content

Commit 3c7120f

Browse files
authored
Merge pull request #33 from google/r0.3.1
R0.3.1
2 parents 3f7eca9 + 5856b7f commit 3c7120f

File tree

7 files changed

+12
-62
lines changed

7 files changed

+12
-62
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ to inspect some example model inputs and outputs.
7575
If you're on a GPU machine:
7676

7777
```bash
78-
pip install deepconsensus[gpu]==0.3.0
78+
pip install deepconsensus[gpu]==0.3.1
7979
# To make sure the `deepconsensus` CLI works, set the PATH:
8080
export PATH="/home/${USER}/.local/bin:${PATH}"
8181
```
8282

8383
If you're on a CPU machine:
8484

8585
```bash
86-
pip install deepconsensus[cpu]==0.3.0
86+
pip install deepconsensus[cpu]==0.3.1
8787
# To make sure the `deepconsensus` CLI works, set the PATH:
8888
export PATH="/home/${USER}/.local/bin:${PATH}"
8989
```
@@ -93,13 +93,13 @@ export PATH="/home/${USER}/.local/bin:${PATH}"
9393
For GPU:
9494

9595
```bash
96-
sudo docker pull google/deepconsensus:0.3.0-gpu
96+
sudo docker pull google/deepconsensus:0.3.1-gpu
9797
```
9898

9999
For CPU:
100100

101101
```bash
102-
sudo docker pull google/deepconsensus:0.3.0
102+
sudo docker pull google/deepconsensus:0.3.1
103103
```
104104

105105
### From source

README_pip.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
If you're on a GPU machine:
44

55
```bash
6-
pip install deepconsensus[gpu]==0.3.0
6+
pip install deepconsensus[gpu]==0.3.1
77
# To make sure the `deepconsensus` CLI works, set the PATH:
88
export PATH="/home/${USER}/.local/bin:${PATH}"
99
```
1010

1111
If you're on a CPU machine:
1212

1313
```bash
14-
pip install deepconsensus[cpu]==0.3.0
14+
pip install deepconsensus[cpu]==0.3.1
1515
# To make sure the `deepconsensus` CLI works, set the PATH:
1616
export PATH="/home/${USER}/.local/bin:${PATH}"
1717
```

deepconsensus/inference/quick_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class DebugStage(enum.Enum):
103103

104104
# The following parameters are used at the end for filtering the final output.
105105
flags.DEFINE_integer('min_length', 0, 'Minimum length for reads output.')
106-
flags.DEFINE_integer('min_quality', 0, 'Minimum quality for reads output.')
106+
flags.DEFINE_integer('min_quality', 20, 'Minimum quality for reads output.')
107107

108108
# The following parameters affect performance of this script.
109109
flags.DEFINE_integer(

deepconsensus/utils/dc_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import tensorflow as tf
3434

3535
# DeepConsensus Version
36-
__version__ = '0.3.0'
36+
__version__ = '0.3.1'
3737

3838
# Vocab
3939
GAP_OR_PAD = ' '

docs/quick_start.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ the appropriate version (CPU / GPU) depending on your use case.
133133

134134
```bash
135135
# Define DOCKER_IMAGE *once* depending on whether you will be using CPU or GPU:
136-
DOCKER_IMAGE=google/deepconsensus:0.3.0 # For CPU
137-
DOCKER_IMAGE=google/deepconsensus:0.3.0-gpu # For GPU
136+
DOCKER_IMAGE=google/deepconsensus:0.3.1 # For CPU
137+
DOCKER_IMAGE=google/deepconsensus:0.3.1-gpu # For GPU
138138
sudo docker pull ${DOCKER_IMAGE}
139139
```
140140

@@ -304,7 +304,7 @@ At the end of your run, you should see:
304304

305305
```
306306
Processed 178 ZMWs in 334.629 seconds
307-
Outcome counts: OutcomeCounter(empty_sequence=0, only_gaps_and_padding=0, failed_quality_filter=0, failed_length_filter=0, success=178)
307+
Outcome counts: OutcomeCounter(empty_sequence=0, only_gaps_and_padding=0, failed_quality_filter=3, failed_length_filter=0, success=175)
308308
```
309309

310310
## Optimizing Runtime

notebooks/Inspecting_DeepConsensus_examples_and_running_model.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
}
8282
],
8383
"source": [
84-
"! pip install -qq deepconsensus[cpu]==0.3.0"
84+
"! pip install -qq deepconsensus[cpu]==0.3.1"
8585
]
8686
},
8787
{

run_kokoro_tests.sh

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)