Create ctffind4 build script & install 4.1.14
This commit is contained in:
8
EM/ctffind4/README
Normal file
8
EM/ctffind4/README
Normal file
@@ -0,0 +1,8 @@
|
||||
# ctffind4
|
||||
|
||||
## Installation
|
||||
|
||||
./build
|
||||
|
||||
Installs the pre-build binaries.
|
||||
|
||||
36
EM/ctffind4/build
Executable file
36
EM/ctffind4/build
Executable file
@@ -0,0 +1,36 @@
|
||||
#!/usr/bin/env modbuild
|
||||
|
||||
# Binary distribution with manual installation. See README.md
|
||||
|
||||
pbuild::add_to_group 'EM'
|
||||
|
||||
pbuild::set_download_url "https://grigoriefflab.umassmed.edu/system/tdf?path=ctffind-${V_PKG}-linux64.tar.gz&file=1&type=node&id=26"
|
||||
|
||||
#pbuild::prep() {
|
||||
# local filename="ctffind-${V_PKG}-linux64.tar.gz"
|
||||
# local dst="$PMODULES_DISTFILESDIR/${filename}"
|
||||
# if [ -f "$dst" ]; then
|
||||
# echo "Found cached $dst" >&2
|
||||
# else
|
||||
# ${curl:-curl} \
|
||||
# --location \
|
||||
# --fail \
|
||||
# --output "$dst" \
|
||||
# "https://grigoriefflab.umassmed.edu/system/tdf?path=${filename}&file=1&type=node&id=26"
|
||||
# fi
|
||||
#}
|
||||
#
|
||||
|
||||
pbuild::configure() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::compile() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::install() {
|
||||
mkdir -p "$PREFIX/bin"
|
||||
mv "$SRC_DIR/"* "$PREFIX/bin"
|
||||
}
|
||||
|
||||
2
EM/ctffind4/files/variants
Normal file
2
EM/ctffind4/files/variants
Normal file
@@ -0,0 +1,2 @@
|
||||
ctffind4/4.1.8 stable
|
||||
ctffind4/4.1.14 stable
|
||||
10
EM/ctffind4/modulefile
Normal file
10
EM/ctffind4/modulefile
Normal file
@@ -0,0 +1,10 @@
|
||||
#%Module1.0
|
||||
|
||||
module-whatis "CTF estimation from electron micrographs"
|
||||
module-url "https://grigoriefflab.umassmed.edu/ctffind4"
|
||||
module-license "The Janelia Research Campus Software License 1.2 http://license.janelia.org/license/janelia_license_1_2.html"
|
||||
module-maintainer "Spencer Bliven <spencer.bliven@psi.ch>"
|
||||
|
||||
module-help "
|
||||
Mindell, JA, Grigorieff N. 2003. Accurate determination of local defocus and specimen tilt in electron microscopy. J Struct Biol. 142:334-47.
|
||||
"
|
||||
Reference in New Issue
Block a user