Skip to content
Snippets Groups Projects
Verified Commit a8472a83 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

picard: add PicardCommandLine for singularity

parent 8e82fe73
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
set -eu
PRG="$(basename -- "$0")"
case "$PRG" in
picard-tools)
echo 1>&2 'Warning: picard-tools is deprecated and should be replaced by PicardCommandLine'
;;
PicardCommandLine)
;;
*)
set -- "$PRG" "$@"
;;
esac
exec java ${JAVA_OPTIONS-} -jar /usr/share/java/picard.jar "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment