forked from gtDMMB/RNAStructProfiling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
42 lines (36 loc) · 1.4 KB
/
README
File metadata and controls
42 lines (36 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
RNAStructProfiling
To download source code, click on "zip" link on the RNAStructProfiling github
page (https://github.com/gtfold/RNAStructProfiling/zipball/master).
To compile on a Unix/Linus machine, make sure the following files are in the
same directory:
--main.c
--profile.h
--profile.c
--summaryGraph.c
--summaryGraph.h
--hashtbl.c
--hashtbl.h
--Makefile
--graph.c
--graph.h
--memoryDFS.c
--memoryDFS.h
Open a terminal window, navigate to the directory that contains
the above files, and type 'make' to compile the program.
To run, you will need to input 1) a sequence file, and 2) an
sfold 'sample_1000.out' file, or any other structure file that
lists structures in triplet notation, with the delineation
"Structure [number]" on a separate line before every structure.
(Included in the github repository is a sequence file and a sample
file from ecoli5S that may be used to run the program.)
Usage (from within that same directory):
./RNAprofile [seq file] [sample file] [options]
Common options:
-h [percent] = filter out all helix classes that occur in less than [h] percent
of the input sample structures
-p [percent] = filter out all profiles that occur less than [p] percent of the
input sample structures
-g = disable graph making component of program (if only interested in helix and
profile stats)
-o [file name] = produces the output graphviz dot file called [file name];
'profile.dot' used by default