Skip to content

Commit

Permalink
Adding new/updated io.github.betaseg_cellsketch-pixel-view_0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frauzufall committed Mar 6, 2024
1 parent 22a7c8e commit aee984e
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 13 deletions.
Binary file modified album_catalog_index.db
Binary file not shown.
3 changes: 3 additions & 0 deletions solutions/io.github.betaseg/cellsketch-pixel-view/CHANGELOG.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.1] - 2024-03-06
Fix executable issue with gradlew

## [0.2.0] - 2024-01-03
Update CellSketch version

Expand Down
Empty file.
Empty file.
Empty file modified solutions/io.github.betaseg/cellsketch-pixel-view/gradlew
100644 → 100755
Empty file.
Empty file modified solutions/io.github.betaseg/cellsketch-pixel-view/gradlew.bat
100644 → 100755
Empty file.
10 changes: 6 additions & 4 deletions solutions/io.github.betaseg/cellsketch-pixel-view/solution.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@ def install():
shutil.copytree(get_package_path().joinpath('src'), get_app_path().joinpath('src'))
shutil.copytree(get_package_path().joinpath('gradle'), get_app_path().joinpath('gradle'))

# compile app
subprocess.run([(get_gradle_executable()), 'build', '-Dorg.gradle.internal.http.socketTimeout=300000'],
cwd=get_app_path(), check=True)


def get_gradle_executable():
from sys import platform
import os
from album.runner.api import get_app_path
if platform == "win32":
return get_app_path().joinpath('gradlew.bat')
return get_app_path().joinpath('gradlew')
return str(get_app_path().joinpath('gradlew.bat').absolute())
gradle_executable = str(get_app_path().joinpath('gradlew').absolute())
os.chmod(gradle_executable, 0o755)
return gradle_executable


def run():
Expand Down Expand Up @@ -57,7 +59,7 @@ def is_file_arg(arg_name):
setup(
group="io.github.betaseg",
name="cellsketch-pixel-view",
version="0.2.0",
version="0.2.1",
solution_creators=["Deborah Schmidt"],
title="CellSketch: Display data in BigDataViewer",
description="This solution displays a CellSketch project in BDV.",
Expand Down
16 changes: 7 additions & 9 deletions solutions/io.github.betaseg/cellsketch-pixel-view/solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ args:
name: project
required: true
type: directory
changelog: 'Update CellSketch version
'
changelog: Fix executable issue with gradlew
cite:
- doi: https://doi.org/10.1083/jcb.202010039
text: "A. M\xC3\xBCller, D. Schmidt, C. S. Xu, S. Pang, J. V. D'Costa, S. Kretschmar,\
\ C. M\xC3\xBCnster, T. Kurth, F. Jug, M. Weigert, H. F. Hess, M. Solimena; 3D\
\ FIB-SEM reconstruction of microtubule-organelle interaction in whole primary\
\ mouse \xCE\xB2 cells. J Cell Biol 1 February 2021; 220 (2): e202010039."
text: "A. M\xFCller, D. Schmidt, C. S. Xu, S. Pang, J. V. D'Costa, S. Kretschmar,\
\ C. M\xFCnster, T. Kurth, F. Jug, M. Weigert, H. F. Hess, M. Solimena; 3D FIB-SEM\
\ reconstruction of microtubule-organelle interaction in whole primary mouse \u03B2\
\ cells. J Cell Biol 1 February 2021; 220 (2): e202010039."
- doi: 10.1038/nmeth.3392
text: 'Pietzsch, T., Saalfeld, S., Preibisch, S., & Tomancak, P. (2015). BigDataViewer:
visualization and processing for large image data sets. Nature Methods, 12(6),
Expand All @@ -30,6 +28,6 @@ tags:
- cellsketch
- segmentation
- annotation
timestamp: '2024-01-03T19:16:11.488587'
timestamp: '2024-03-06T16:38:01.285064'
title: 'CellSketch: Display data in BigDataViewer'
version: 0.2.0
version: 0.2.1
Empty file.

0 comments on commit aee984e

Please sign in to comment.