-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
111 lines (82 loc) · 2.49 KB
/
NAMESPACE
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
useDynLib(pwalign)
import(methods)
importFrom(utils, data, packageVersion)
import(BiocGenerics)
import(S4Vectors)
import(IRanges)
import(Biostrings)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 classes
###
exportClasses(
InDel,
AlignedXStringSet0, AlignedXStringSet, QualityAlignedXStringSet,
PairwiseAlignments,
PairwiseAlignmentsSingleSubject,
PairwiseAlignmentsSingleSubjectSummary
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 methods for generics not defined in pwalign
###
exportMethods(
## Methods for generics defined in the base package:
length, as.character, as.matrix, toString, nchar, summary,
## Methods for generics defined in the methods package:
show,
## Methods for generics defined in the BiocGenerics package:
type, start, end, width, score,
## Methods for generics defined in the S4Vectors package:
parallel_slot_names, parallelVectorNames,
## Methods for generics defined in the IRanges package:
Views, subject, coverage,
## Methods for generics defined in the Biostrings package:
consensusMatrix,
mismatch, nmatch, nmismatch
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export non-generic functions
###
export(
## PairwiseAlignments-io.R:
writePairwiseAlignments,
## substitution_matrices.R:
nucleotideSubstitutionMatrix,
errorSubstitutionMatrices,
qualitySubstitutionMatrices
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 generics defined in pwalign, and corresponding methods
###
export(
## InDel-class.R:
insertion, deletion,
## AlignedXStringSet-class.R:
unaligned, aligned, indel, nindel,
## PairwiseAlignments-class.R:
PairwiseAlignments, pattern, alignedPattern, alignedSubject,
## PairwiseAlignmentsSingleSubject-class.R:
PairwiseAlignmentsSingleSubject,
## align-utils.R:
nedit,
mismatchTable, mismatchSummary,
compareStrings,
## pid.R:
pid,
## pairwiseAlignment.R:
pairwiseAlignment,
## stringDist.R:
stringDist
)
### Same list as above.
exportMethods(
insertion, deletion,
unaligned, aligned, indel, nindel,
PairwiseAlignments, pattern, alignedPattern, alignedSubject,
PairwiseAlignmentsSingleSubject,
nedit,
mismatchTable, mismatchSummary,
compareStrings,
pid,
pairwiseAlignment,
stringDist
)