/usr/share/wise/methods is in wise-data 2.4.1-17.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | type aa
real int
endtype
type codon
real int
endtype
#
# Stuff for PROTEIN
#
type PROTEIN
real ComplexSequence*
dbtype ProteinDB*
init init_ProteinDB
reload reload_ProteinDB
close close_ProteinDB
addentry dataentry_add_ProteinDB
name get_allocd_name_ComplexSequence
hardlink hard_link_ComplexSequence
free free_ComplexSequence
threadsafe
endtype
method AMINOACID
map CSEQ_PROTEIN_AMINOACID
arg PROTEIN
arg int
return aa
endmethod
#
# End of protein type and methods
#
type COMPMAT
real CompMat*
endtype
method AAMATCH
map CompMat_AAMATCH
arg COMPMAT
arg aa
arg aa
return int
endmethod
type DNACOMPMAT
real DnaMatrix*
endtype
method DNABASEMATCH
map DnaMatrix_MATCH
arg DNACOMPMAT
arg base
arg base
return int
endmethod
type CODONMATRIX
real CodonMatrixScore*
endtype
method CODON_MATCH
map CodonMatrix_MATCH
arg CODONMATRIX
arg codon
arg codon
return int
endmethod
#
# Genomic types and methods
#
type GENOMIC
real ComplexSequence*
dbtype GenomicDB*
init init_GenomicDB
reload reload_GenomicDB
close close_GenomicDB
addentry dataentry_add_GenomicDB
name get_allocd_name_ComplexSequence
hardlink hard_link_ComplexSequence
free free_ComplexSequence
threadsafe
endtype
method GENOMIC_CODON
map CSEQ_GENOMIC_CODON
arg GENOMIC
arg int
return codon
endmethod
method GENOMIC_BASE
map CSEQ_GENOMIC_BASE
arg GENOMIC
arg int
return base
endmethod
method GENOMIC_5SS
map CSEQ_GENOMIC_5SS
arg GENOMIC
arg int
return int
endmethod
method GENOMIC_3SS
map CSEQ_GENOMIC_3SS
arg GENOMIC
arg int
return int
endmethod
method GENOMIC_REPEAT
map CSEQ_GENOMIC_REPEAT
arg GENOMIC
arg int
return int
endmethod
method GENOMIC_CDS_POT
map CSEQ_GENOMIC_CDSPOT
arg GENOMIC
arg int
return int
endmethod
#
# Cdna Methods
#
type CDNA
real ComplexSequence*
dbtype cDNADB*
init init_cDNADB
reload reload_cDNADB
close close_cDNADB
addentry dataentry_add_cDNADB
hardlink hard_link_ComplexSequence
free free_ComplexSequence
threadsafe
endtype
method CDNA_CODON
map CSEQ_CDNA_CODON
arg CDNA
arg int
return codon
endmethod
method CDNA_BASE
map CSEQ_CDNA_BASE
arg CDNA
arg int
return base
endmethod
method CDNA_SEQ_POS
map CSEQ_SEQ
arg CDNA
arg int
return char*
endmethod
#
# Dna mehtods
#
type DNA
real ComplexSequence*
endtype
method DNA_BASE
map CSEQ_DNA_BASE
arg DNA
arg int
return base
endmethod
type DNAMAT
real DnaMatrix*
endtype
method DNAMATCH
map DnaMatrix_MATCH
arg DNAMAT
arg base
arg base
return int
endmethod
# genewise models
type CDNA_HMM
real GeneWiseScore*
dbtype GeneWiseDB*
init init_GeneWiseDB
reload reload_GeneWiseDB
close close_GeneWiseDB
addentry dataentry_add_GeneWiseDB
hardlink hard_link_GeneWiseScore
free free_GeneWiseScore
threadsafe
endtype
type GENEWISEMODEL
real GeneWiseScore*
dbtype GeneWiseDB*
init init_GeneWiseDB
reload reload_GeneWiseDB
close close_GeneWiseDB
addentry dataentry_add_GeneWiseDB
hardlink hard_link_GeneWiseScore
free free_GeneWiseScore
threadsafe
endtype
|