svincoff commited on
Commit
5dc1e47
·
1 Parent(s): 1630441

MEME instructions

Browse files
Files changed (2) hide show
  1. .gitignore +1 -1
  2. dpacman/softwares/README.md +49 -0
.gitignore CHANGED
@@ -5,7 +5,7 @@ bigBedToBed
5
  dpacman/data/remap/*.log
6
  dpacman/data/remap/temp.py
7
  dpacman/data/tfclust/figures
8
- dpacman/softwares
9
  dpacman/data/remap/crm_example.csv
10
  dpacman/data/remap/crm_example_ERG.csv
11
  tree.txt
 
5
  dpacman/data/remap/*.log
6
  dpacman/data/remap/temp.py
7
  dpacman/data/tfclust/figures
8
+ dpacman/softwares/meme*
9
  dpacman/data/remap/crm_example.csv
10
  dpacman/data/remap/crm_example_ERG.csv
11
  tree.txt
dpacman/softwares/README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Downloaded MEME on 7/4/2025
2
+
3
+ Check here for prerequisites: https://meme-suite.org/meme/doc/install.html#prerequisite
4
+ ```
5
+ which perl
6
+ perl --version
7
+
8
+ which python
9
+ python3 --version
10
+
11
+ dpkg -l | grep zlib
12
+
13
+ which gs
14
+ gs --version
15
+ ```
16
+ Didn't have zlib, so did
17
+ ```
18
+ sudo apt-get install zlib1g-dev
19
+ ```
20
+
21
+ ```
22
+ wget https://meme-suite.org/meme/meme-software/5.5.8/meme-5.5.8.tar.gz
23
+ ```
24
+ Then, following the instructions on this website: https://meme-suite.org/meme/doc/install.html
25
+ ```
26
+ tar zxf meme-5.5.8.tar.gz
27
+ cd meme-5.5.8
28
+ ./configure --prefix=$HOME/meme --enable-build-libxml2 --enable-build-libxslt
29
+ make
30
+ make test
31
+ make install
32
+ ```
33
+
34
+ The configure command recommended these follow-up steps:
35
+ ```
36
+ Run the following commands to compile, test and install meme:
37
+ make
38
+ make test
39
+ make install
40
+
41
+ Then make sure that the following two directories are added to
42
+ your PATH variable:
43
+ /home/a03-svincoff/meme/bin
44
+ /home/a03-svincoff/meme/libexec/meme-5.5.8
45
+
46
+ This can often be done by editing the file named .profile to add
47
+ the following line:
48
+ export PATH=/home/a03-svincoff/meme/bin:/home/a03-svincoff/meme/libexec/meme-5.5.8:$PATH
49
+ ```