Skip to content

Commit 10a1d74

Browse files
committed
fixed dependency in denoise
1 parent b0c7d33 commit 10a1d74

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Singularity

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ from: python:3.9.19-slim-bookworm
1818
%labels
1919
AUTHORS Mihin Perera, Edward Yang, Julie Iskander
2020
MAINTAINERS Mihin Perera, Edward Yang, Julie Iskander
21-
VERSION v0.1.1
21+
VERSION v0.1.1

partinet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def main():
6363
@click.option("--labels", required=True, help="Path to the labels directory")
6464
@click.option("--images", required=True, help="Path to the images directory")
6565
@click.option("--output", required=True, help="Path to the output directory")
66-
def train_split(labels, images, output):
66+
def split(labels, images, output):
6767
click.echo("Splitting micrographs for training and validation...")
6868
import partinet.process_utils.split_train
6969
partinet.process_utils.split_train.main(labels, images, output)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ dependencies = [
3939
"click",
4040
"tensorboard",
4141
"scikit-learn",
42+
"mrcfile",
4243
]
4344

4445
[project.scripts]

0 commit comments

Comments
 (0)