Skip to content

Commit

Permalink
fix version in pom
Browse files Browse the repository at this point in the history
  • Loading branch information
tischi committed Dec 6, 2023
1 parent e60bbc6 commit 2ab4853
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@

<groupId>org.embl.mobie</groupId>
<artifactId>mobie-viewer-fiji</artifactId>
<!-- <version>4.1.3-SNAPSHOT</version>-->
<version>4.1.3</version>
<version>4.1.4-SNAPSHOT</version>


<!-- force javadoc generation to fetch errors: -->
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/embl/mobie/MoBIE.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ public MoBIE( List< String > imagePaths, List< String > labelPaths, List< String
{
IJ.log("\n# MoBIE" );
IJ.log("Opening images: " + Arrays.toString( imagePaths.toArray() ) );
IJ.log("Opening labels: " + Arrays.toString( imagePaths.toArray() ) );
IJ.log("Opening tables: " + Arrays.toString( imagePaths.toArray() ) );
IJ.log("Opening labels: " + Arrays.toString( labelPaths.toArray() ) );
IJ.log("Opening tables: " + Arrays.toString( labelTablePaths.toArray() ) );

this.settings = settings;

Expand Down
15 changes: 15 additions & 0 deletions src/test/java/projects/em_xray_alignment/OpenEMChunk.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package projects.em_xray_alignment;

import org.embl.mobie.command.open.OpenImageAndLabelsCommand;

import java.io.File;

public class OpenEMChunk
{
public static void main( String[] args )
{
OpenImageAndLabelsCommand command = new OpenImageAndLabelsCommand();
command.image = new File( "/Volumes/cba/exchange/em-xray-alignment-data/0/em-zarr/test.ome.zarr" );
command.run();
}
}

0 comments on commit 2ab4853

Please sign in to comment.