| ... | ... |
@@ -3,7 +3,7 @@ import(methods) |
| 3 | 3 |
importMethodsFrom(Biostrings, reverseComplement, matchPattern, |
| 4 | 4 |
DNAString) |
| 5 | 5 |
|
| 6 |
-importMethodsFrom(GenomeInfoDb, seqlengths, "seqlengths<-", |
|
| 6 |
+importMethodsFrom(Seqinfo, seqlengths, "seqlengths<-", |
|
| 7 | 7 |
"seqlevels<-") |
| 8 | 8 |
|
| 9 | 9 |
importFrom(RColorBrewer, brewer.pal) |
- Move packages not useful to the end user to DESCRIPTION Imports:
- Adjust NAMESPACE to import necessary packages, functions, classes
- use full names for function arguments (e.g., axis(labels=...))
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/r3Cseq@97463 bc3139a8-67e5-0310-9ffc-ced21a209358
| ... | ... |
@@ -1,6 +1,34 @@ |
| 1 |
+import(methods) |
|
| 2 |
+ |
|
| 3 |
+importMethodsFrom(Biostrings, reverseComplement, matchPattern, |
|
| 4 |
+ DNAString) |
|
| 5 |
+ |
|
| 6 |
+importMethodsFrom(GenomeInfoDb, seqlengths, "seqlengths<-", |
|
| 7 |
+ "seqlevels<-") |
|
| 8 |
+ |
|
| 9 |
+importFrom(RColorBrewer, brewer.pal) |
|
| 10 |
+ |
|
| 11 |
+importFrom(Rsamtools, scanBamFlag) |
|
| 12 |
+importMethodsFrom(Rsamtools, scanBam, ScanBamParam) |
|
| 13 |
+ |
|
| 14 |
+importFrom(VGAM, vsmooth.spline, zeta) |
|
| 15 |
+ |
|
| 16 |
+importFrom(data.table, data.table, setkey, setnames) |
|
| 17 |
+ |
|
| 18 |
+importFrom(qvalue, qvalue) |
|
| 19 |
+ |
|
| 20 |
+importFrom(sqldf, sqldf) |
|
| 21 |
+ |
|
| 22 |
+importFrom(stats, lm, pchisq, pnorm, smooth.spline) |
|
| 23 |
+ |
|
| 24 |
+importFrom(utils, write.table) |
|
| 25 |
+ |
|
| 26 |
+import(IRanges, GenomicRanges, rtracklayer) |
|
| 27 |
+ |
|
| 1 | 28 |
exportClasses( |
| 2 | 29 |
"r3Cseq","r3CseqInBatch" |
| 3 | 30 |
) |
| 31 |
+ |
|
| 4 | 32 |
export( |
| 5 | 33 |
"getCoverage", |
| 6 | 34 |
"expCoverage", |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/r3Cseq@71759 bc3139a8-67e5-0310-9ffc-ced21a209358
| ... | ... |
@@ -1,23 +1,41 @@ |
| 1 | 1 |
exportClasses( |
| 2 |
- "r3Cseq" |
|
| 2 |
+ "r3Cseq","r3CseqInBatch" |
|
| 3 | 3 |
) |
| 4 | 4 |
export( |
| 5 | 5 |
"getCoverage", |
| 6 | 6 |
"expCoverage", |
| 7 | 7 |
"contrCoverage", |
| 8 |
+ "getRawReads", |
|
| 9 |
+ "expRawData", |
|
| 10 |
+ "expRawData<-", |
|
| 11 |
+ "contrRawData", |
|
| 12 |
+ "contrRawData<-", |
|
| 13 |
+ "getBatchRawReads", |
|
| 8 | 14 |
"getReadCountPerRestrictionFragment", |
| 15 |
+ "getBatchReadCountPerRestrictionFragment", |
|
| 16 |
+ "getReadCountPerWindow", |
|
| 17 |
+ "getBatchReadCountPerWindow", |
|
| 9 | 18 |
"getViewpoint", |
| 10 | 19 |
"calculateRPM", |
| 20 |
+ "calculateBatchRPM", |
|
| 21 |
+ "expReadCount", |
|
| 22 |
+ "contrReadCount", |
|
| 11 | 23 |
"expRPM", |
| 12 | 24 |
"contrRPM", |
| 13 | 25 |
"getInteractions", |
| 26 |
+ "getBatchInteractions", |
|
| 14 | 27 |
"expInteractionRegions", |
| 15 | 28 |
"contrInteractionRegions", |
| 16 | 29 |
"plotOverviewInteractions", |
| 17 | 30 |
"plotInteractionsNearViewpoint", |
| 18 | 31 |
"plotInteractionsPerChromosome", |
| 32 |
+ "plotDomainogramNearViewpoint", |
|
| 19 | 33 |
"plot3Cecdf", |
| 34 |
+ "export3CseqRawReads2bedGraph", |
|
| 20 | 35 |
"export3Cseq2bedGraph", |
| 21 | 36 |
"exportInteractions2text", |
| 22 |
- "generate3CseqReport" |
|
| 37 |
+ "exportBatchInteractions2text", |
|
| 38 |
+ "generate3CseqReport", |
|
| 39 |
+ "getExpInteractionsInRefseq", |
|
| 40 |
+ "getContrInteractionsInRefseq" |
|
| 23 | 41 |
) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/r3Cseq@69624 bc3139a8-67e5-0310-9ffc-ced21a209358
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,23 @@ |
| 1 |
+exportClasses( |
|
| 2 |
+ "r3Cseq" |
|
| 3 |
+) |
|
| 4 |
+export( |
|
| 5 |
+ "getCoverage", |
|
| 6 |
+ "expCoverage", |
|
| 7 |
+ "contrCoverage", |
|
| 8 |
+ "getReadCountPerRestrictionFragment", |
|
| 9 |
+ "getViewpoint", |
|
| 10 |
+ "calculateRPM", |
|
| 11 |
+ "expRPM", |
|
| 12 |
+ "contrRPM", |
|
| 13 |
+ "getInteractions", |
|
| 14 |
+ "expInteractionRegions", |
|
| 15 |
+ "contrInteractionRegions", |
|
| 16 |
+ "plotOverviewInteractions", |
|
| 17 |
+ "plotInteractionsNearViewpoint", |
|
| 18 |
+ "plotInteractionsPerChromosome", |
|
| 19 |
+ "plot3Cecdf", |
|
| 20 |
+ "export3Cseq2bedGraph", |
|
| 21 |
+ "exportInteractions2text", |
|
| 22 |
+ "generate3CseqReport" |
|
| 23 |
+) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/r3Cseq@69623 bc3139a8-67e5-0310-9ffc-ced21a209358
| 1 | 1 |
deleted file mode 100644 |
| ... | ... |
@@ -1,23 +0,0 @@ |
| 1 |
-exportClasses( |
|
| 2 |
- "r3Cseq" |
|
| 3 |
-) |
|
| 4 |
-export( |
|
| 5 |
- "getCoverage", |
|
| 6 |
- "expCoverage", |
|
| 7 |
- "contrCoverage", |
|
| 8 |
- "getReadCountPerRestrictionFragment", |
|
| 9 |
- "getViewpoint", |
|
| 10 |
- "calculateRPM", |
|
| 11 |
- "expRPM", |
|
| 12 |
- "contrRPM", |
|
| 13 |
- "getInteractions", |
|
| 14 |
- "expInteractionRegions", |
|
| 15 |
- "contrInteractionRegions", |
|
| 16 |
- "plotOverviewInteractions", |
|
| 17 |
- "plotInteractionsNearViewpoint", |
|
| 18 |
- "plotInteractionsPerChromosome", |
|
| 19 |
- "plot3Cecdf", |
|
| 20 |
- "export3Cseq2bedGraph", |
|
| 21 |
- "exportInteractions2text", |
|
| 22 |
- "generate3CseqReport" |
|
| 23 |
-) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/r3Cseq@59425 bc3139a8-67e5-0310-9ffc-ced21a209358
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,23 @@ |
| 1 |
+exportClasses( |
|
| 2 |
+ "r3Cseq" |
|
| 3 |
+) |
|
| 4 |
+export( |
|
| 5 |
+ "getCoverage", |
|
| 6 |
+ "expCoverage", |
|
| 7 |
+ "contrCoverage", |
|
| 8 |
+ "getReadCountPerRestrictionFragment", |
|
| 9 |
+ "getViewpoint", |
|
| 10 |
+ "calculateRPM", |
|
| 11 |
+ "expRPM", |
|
| 12 |
+ "contrRPM", |
|
| 13 |
+ "getInteractions", |
|
| 14 |
+ "expInteractionRegions", |
|
| 15 |
+ "contrInteractionRegions", |
|
| 16 |
+ "plotOverviewInteractions", |
|
| 17 |
+ "plotInteractionsNearViewpoint", |
|
| 18 |
+ "plotInteractionsPerChromosome", |
|
| 19 |
+ "plot3Cecdf", |
|
| 20 |
+ "export3Cseq2bedGraph", |
|
| 21 |
+ "exportInteractions2text", |
|
| 22 |
+ "generate3CseqReport" |
|
| 23 |
+) |