Skip to content

Commit

Permalink
Add MEME suite installation to rworkflows
Browse files Browse the repository at this point in the history
  • Loading branch information
HDash committed Jun 18, 2024
1 parent 61f555e commit 3635593
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/rworkflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,26 @@ jobs:
bioc: release
r: auto
steps:
- name: Install MEME suite
run: |
memeversion = 5.5.5
wget http://meme-suite.org/meme-software/$version/meme-$memeversion.tar.gz
tar zxf meme-$memeversion.tar.gz
cd meme-$memeversion
./configure --prefix=$HOME/meme --with-url=http://meme-suite.org/ --enable-build-libxml2 --enable-build-libxslt
make
make test
make install
- name: Set MEME_BIN environment variable
run: echo "MEME_BIN=$HOME/meme/bin" >> $GITHUB_ENV
- name: Check for ame in MEME suite bin
run: |
if [ ! -f "$HOME/meme/bin/ame" ]; then
echo "ame executable not found in $HOME/meme/bin"
exit 1
fi
echo "MEME suite (version $memeversion) successfully installed."
echo "MEME suite bin path: $MEME_BIN"
- uses: neurogenomics/rworkflows@master
with:
run_bioccheck: ${{ true }}
Expand Down

0 comments on commit 3635593

Please # to comment.