-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathPfam.jl
45 lines (38 loc) · 903 Bytes
/
Pfam.jl
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
43
44
45
"""
The `Pfam` module, defines functions to measure the protein contact prediction performance of information measure between column pairs from a Pfam MSA.
**Features**
- Read and download Pfam MSAs
- Obtain PDB information from alignment annotations
- Map between sequence/alignment residues/columns and PDB structures
- Measure of AUC (ROC curve) for contact prediction of MI scores
```julia
using MIToS.Pfam
```
"""
module Pfam
using MIToS.Utils
using MIToS.MSA
using MIToS.SIFTS
using MIToS.PDB
using MIToS.Information
using PairwiseListMatrices
using NamedArrays
using OrderedCollections
export # Download
downloadpfam,
# PDB
Stockholm,
getseq2pdb,
msacolumn2pdbresidue,
hasresidues,
msacontacts,
msaresidues,
getcontactmasks,
# Utils
read_file,
parse_file,
write_file,
print_file
include("Download.jl")
include("PDB.jl")
end