Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document MEME suite installation #422

Open
wants to merge 3 commits into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions Doc/Prepare-Ubuntu-22.04-HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -1399,6 +1399,46 @@ From the `biocbuild` account, try to build and check the **rmspc** package:
../R/bin/R CMD check --no-vignettes rmspc_X.Y.Z.tar.gz


### 3.8 Install MEME suite

Required by Bioconductor package **MotifPeeker**.

Download, configure and install MEME suite. Set `MEME_VERSION` to the latest
version.

MEME_VERSION=5.5.5
MEME_PATH=/opt
curl -L -O https://meme-suite.org/meme/meme-software/$MEME_VERSION/meme-$MEME_VERSION.tar.gz
tar zxf meme-$MEME_VERSION.tar.gz
cd meme-$MEME_VERSION

Install Perl dependences, which can be descovered by `perl scripts/dependencies.pl'. Install
with `cpan` or `cpanm`:

sudo apt search libexpat-dev | grep installed # Install if needed for XML::Simple
sudo cpanm -vn HTML::Template
sudo cpanm -vn XML::Simple
sudo cpanm -vn Sys::Info

Configure

./configure --prefix=$MEME_PATH/meme --with-url=http://meme-suite.org/ --enable-build-libxml2 --enable-build-libxslt
sudo make install

Add MEME suite to the path and export `MEME_BIN` in `/etc/profile`:

export PATH=$PATH:/opt/meme/bin
export PATH=$PATH:/opt/meme/libexec/meme-5.5.5
export MEME_BIN=/opt/meme/bin

#### Testing

From the `biocbuild` account, log back in then try to build and check the
**MotifPeeker** package:

cd ~/bbs-3.19-bioc/meat/
../R/bin/R CMD build MotifPeeker


## 4. Set up other builds

Expand Down
29 changes: 29 additions & 0 deletions Doc/Prepare-macOS-Big-Sur-HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -1578,6 +1578,35 @@ You might need to logout and login again before trying this:
R CMD check --no-vignettes rmspc_X.Y.Z.tar.gz


### 4.11 Install MEME suite

Required by Bioconductor package **MotifPeeker**.

Download, configure and install MEME suite. Set `MEME_VERSION` to the latest
version.

MEME_VERSION=5.5.5
MEME_PATH=/opt
curl -L -O https://meme-suite.org/meme/meme-software/$MEME_VERSION/meme-$MEME_VERSION.tar.gz
tar zxf meme-$MEME_VERSION.tar.gz
cd meme-$MEME_VERSION
./configure --prefix=$MEME_PATH/meme --with-url=http://meme-suite.org/ --enable-build-libxml2 --enable-build-libxslt
sudo make install

Add MEME suite to the path and export `MEME_BIN` in `/etc/profile`:

export PATH=$PATH:/opt/meme/bin
export PATH=$PATH:/opt/meme/libexec/meme-5.5.5
export MEME_BIN=/opt/meme/bin

#### Testing

From the `biocbuild` account, log back in then try to build and check the
**MotifPeeker** package:

cd ~/bbs-3.19-bioc/meat/
../R/bin/R CMD build MotifPeeker


## 5. Set up other builds

Expand Down