You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/bin/sh#This script is intended for launching on Macs#It may or may not work on *nix, definitely not on windows#apple.laf.useScreenMenuBar for Macs, to put menu bar at top of screen#-Xdock:name again for Macs, sets the name in menu bar#-Xmx4000m indicates 4000 mb of memory, adjust number up or down as needed#Script must be in the same directory as igv.jar#Add the flag -Ddevelopment = true to use features still in developmentprefix=`dirname $(readlink $0 || echo $0)`exec java -Xmx4000m \ -Xdock:name="TBtools" \ -Dapple.laf.useScreenMenuBar=false \ -Djava.net.preferIPv4Stack=true \ -jar "$prefix"/TBtools_JRE1.6.jar "$@"