Skip to content

Commit 56e61b5

Browse files
committed
Fix wrong version in install script
1 parent 4b91e5b commit 56e61b5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# This script is shamelessly adapted from https://github.com/saalfeldlab/n5-utils, thanks @axtimwalde & co!
44

5-
VERSION="0.1.0-SNAPSHOT"
5+
VERSION="0.2.0-SNAPSHOT"
66
INSTALL_DIR=${1:-$(pwd)}
77

88
echo ""

src/main/java/cmd/Resave.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
public class Resave implements Callable<Void> {
4141

42-
@Option(names = {"-c", "--container"}, required = false, description = "N5 output container path to which a new dataset will be added (N5 can exist or new one will be created), e.g. -o /home/ssq.n5. If left if omitted, the dataset will be stored in the current path.")
42+
@Option(names = {"-c", "--container"}, required = false, description = "N5 output container path to which a new dataset will be added (N5 can exist or new one will be created), e.g. -o /home/ssq.n5. If omitted, a single slice-dataset will be stored in the current path.")
4343
private String containerPath = null;
4444

4545
@Option(names = {"-i", "--input"}, required = true, description = "list of csv input files as triple 'locations.csv,reads.csv,datasetName' or optionally quadruple 'locations.csv,reads.csv,celltypes.csv,datasetName' with celltype annotations , e.g. -i '$HOME/Puck_180528_20/BeadLocationsForR.csv,$HOME/Puck_180528_20/MappedDGEForR.csv,Puck_180528_20'")

0 commit comments

Comments
 (0)