Skip to content

Commit

Permalink
Update wrapper.py
Browse files Browse the repository at this point in the history
Updated neubiaswg5-utilities to biaflows-utilities
  • Loading branch information
SebastienTs authored Dec 8, 2020
1 parent a89674a commit 2789d2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wrapper.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import sys
from subprocess import call
from cytomine.models import Job
from neubiaswg5 import CLASS_OBJTRK
from neubiaswg5.helpers import get_discipline, NeubiasJob, prepare_data, upload_data, upload_metrics
from biaflows import CLASS_OBJTRK
from biaflows.helpers import get_discipline, BiaflowsJob, prepare_data, upload_data, upload_metrics

def main(argv):
# 0. Initialize Cytomine client and job if necessary and parse inputs
with NeubiasJob.from_cli(argv) as nj:
with BiaflowsJob.from_cli(argv) as nj:
problem_cls = get_discipline(nj, default=CLASS_OBJTRK)
is_2d = False
nj.job.update(status=Job.RUNNING, progress=0,
Expand Down

0 comments on commit 2789d2c

Please sign in to comment.