This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
================================================================================================ | |
variant for | |
a) near future (when image-legacy master makes it into scijava/parent-pom) | |
b) for apps that harvest an image their own way (here somehow from a given folder) | |
================================================================================================ | |
git clone [email protected]:xulman/imagej-legacy.git | |
cd imagej-legacy | |
mvn -Dmaven.test.skip=true clean install | |
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package cz.ulman.dnd; | |
import org.scijava.Priority; | |
import org.scijava.io.IOService; | |
import org.scijava.io.location.FileLocation; | |
import org.scijava.io.location.Location; | |
import org.scijava.plugin.Plugin; | |
import org.scijava.io.IOPlugin; | |
import org.scijava.io.AbstractIOPlugin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package cz.ulman.dnd; | |
import org.scijava.plugin.Plugin; | |
import org.scijava.io.IOPlugin; | |
import org.scijava.io.AbstractIOPlugin; | |
import org.scijava.io.location.FileLocation; | |
import org.scijava.io.location.Location; | |
import java.io.IOException; | |
import java.util.ArrayList; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ more *.* | |
:::::::::::::: | |
CMakeLists.txt | |
:::::::::::::: | |
cmake_minimum_required (VERSION 3.5) | |
project (poco-VladoClientTest) | |
find_package (Poco REQUIRED Net) | |
add_executable (clientTest main.cpp) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# plan: | |
# ----- | |
# 1) get EmbryoGen source code | |
# 2) set up the environment | |
# a) with: module add git, then GCC/10.2.0, CMake, OpenMPI/4.0.5-GCC-10.2.0 | |
# b) calling a script from EmbryoGen's repo | |
# 3) download, compile and install locally all necessary libs | |
# 4) setup & compile EmbryoGen | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The official web page : https://cbia.fi.muni.cz/software/viewer4d/main.html | |
with the offical howto: https://cbia.fi.muni.cz/software/viewer4d/main-compiling.html | |
(with official DL-page: https://cbia.fi.muni.cz/software/viewer4d/main-download.html) | |
install into your OS the following packages: | |
i3dlibs, glew-devel, wxWidgets-devel, gcc, cmake | |
i3dlibs : https://cbia.fi.muni.cz/software/i3d-library.html | |
glew-devel: reported working with version 2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create 20 runX folders | |
for i in `seq 1 20`; do mkdir -p run${i}; done | |
# submit 20 jobs, each in its own folder | |
for i in `seq 1 20`; do | |
cd run${i} | |
. /some/path/to/qsub/script mitogen params..... | |
cd .. | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# once on a cluster, say after `ssh salomon` | |
# --------------- prepare and compile --------------- | |
# add necessary dev modules | |
. /scratch/work/project/open-19-3/simulators_libs/addModulesAtIT4I | |
# get sources and prepare env | |
git clone ...daPath... | |
cd $clonedFolder | |
mkdir BUILD |