... | ... |
@@ -4,7 +4,6 @@ exportMethods ( |
4 | 4 |
export, |
5 | 5 |
show, |
6 | 6 |
query, |
7 |
- matchMotif, |
|
8 | 7 |
motifToGene, |
9 | 8 |
geneToMotif, |
10 | 9 |
associateTranscriptionFactors |
... | ... |
@@ -14,11 +13,6 @@ export( |
14 | 13 |
MotifDb |
15 | 14 |
) |
16 | 15 |
|
17 |
-import(motifmatchr) |
|
18 |
-import(TFBSTools) |
|
19 |
-importFrom(universalmotif, convert_motifs) |
|
20 |
- |
|
21 |
- |
|
22 | 16 |
import(BiocGenerics) |
23 | 17 |
import(S4Vectors) |
24 | 18 |
import(IRanges) |
... | ... |
@@ -4,6 +4,7 @@ exportMethods ( |
4 | 4 |
export, |
5 | 5 |
show, |
6 | 6 |
query, |
7 |
+ matchMotif, |
|
7 | 8 |
motifToGene, |
8 | 9 |
geneToMotif, |
9 | 10 |
associateTranscriptionFactors |
... | ... |
@@ -13,9 +14,15 @@ export( |
13 | 14 |
MotifDb |
14 | 15 |
) |
15 | 16 |
|
17 |
+import(motifmatchr) |
|
18 |
+import(TFBSTools) |
|
19 |
+importFrom(universalmotif, convert_motifs) |
|
20 |
+ |
|
21 |
+ |
|
16 | 22 |
import(BiocGenerics) |
17 | 23 |
import(S4Vectors) |
18 | 24 |
import(IRanges) |
25 |
+import(GenomicRanges) |
|
19 | 26 |
importFrom(rtracklayer, export) |
20 | 27 |
import(Biostrings) |
21 | 28 |
import(methods) |
... | ... |
@@ -4,8 +4,9 @@ exportMethods ( |
4 | 4 |
export, |
5 | 5 |
show, |
6 | 6 |
query, |
7 |
- mapMotifToTranscriptionFactorGeneSymbol, |
|
8 |
- mapTranscriptionFactorGeneSymbolToMotif |
|
7 |
+ motifToGene, |
|
8 |
+ geneToMotif, |
|
9 |
+ associateTranscriptionFactors |
|
9 | 10 |
) |
10 | 11 |
|
11 | 12 |
export( |
... | ... |
@@ -18,3 +19,4 @@ import(IRanges) |
18 | 19 |
importFrom(rtracklayer, export) |
19 | 20 |
import(Biostrings) |
20 | 21 |
import(methods) |
22 |
+importFrom(splitstackshape, expandRows) |
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/MotifDb@107860 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/MotifDb@94017 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/MotifDb@68872 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,16 @@ |
1 |
+exportClasses (MotifList) |
|
2 |
+exportMethods ( |
|
3 |
+ subset, |
|
4 |
+ export, |
|
5 |
+ show, |
|
6 |
+ query |
|
7 |
+ ) |
|
8 |
+ |
|
9 |
+export( |
|
10 |
+ MotifDb |
|
11 |
+) |
|
12 |
+ |
|
13 |
+importMethodsFrom(IRanges, rbind, eval, sapply, subset, values) |
|
14 |
+importFrom(IRanges, DataFrame) |
|
15 |
+importFrom(rtracklayer, export) |
|
16 |
+ |