git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/gmapR@68172 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
old mode 100755 |
2 | 2 |
new mode 100644 |
... | ... |
@@ -1,14 +1,29 @@ |
1 |
-*use BSGenome and Bioc dbSNP objects instead of downloading from UCSC. |
|
1 |
+*GmapGenome doesn't yet have a method for DNAStringSet genomes |
|
2 | 2 |
|
3 |
-*globals function needs to set elements in the list returned by |
|
4 |
- options() instead of using the globals() fun. Other wise |
|
5 |
- HTSeqGenieBase and gmapR will both have exported globals() functions |
|
3 |
+*genome param for GmapGenome class isn't making it into the |
|
4 |
+object. not in representation? |
|
6 | 5 |
|
7 |
-*HTSeqGenieBase needs to depend on gmapR and not contain now-redundant |
|
8 |
- code. To to this, HTSeqGenieBase::globals() needs to have entries |
|
9 |
- removed now in gmapR::globals() |
|
6 |
+*passing use_snps=NULL as an arg to GsnapParam constructor breaks it |
|
10 | 7 |
|
11 |
-*configureGmapR.R calls buildGmapIndex, buildGmapDbSNPIndex, and |
|
12 |
-buildRefseqSpliceSites. These are high-level functions that obtain |
|
13 |
-hg19 data and call more generalized functions. These high-level |
|
14 |
-functions belong in HTSeqGenieBase. |
|
8 |
+*fix extra() arg in gsnap method |
|
9 |
+ |
|
10 |
+*Vignette |
|
11 |
+**remove all eval=FALSE. This means rolling some GmapGenome packages |
|
12 |
+ |
|
13 |
+*cannot overwrite files from gsnap. In other words, can only run gsnap |
|
14 |
+ function once. |
|
15 |
+ |
|
16 |
+*make sure mapping in gsnap command-line too (short form args) are |
|
17 |
+ clearly linked to in the R docs (Greg request) |
|
18 |
+ |
|
19 |
+*get NGS seq pipeline tests working |
|
20 |
+ |
|
21 |
+*gsnap said the distant_splice_identity args is not supported, but |
|
22 |
+ it's in the gsnap --help documention |
|
23 |
+ |
|
24 |
+*bam_tally segfaults if the BAM file used is not indexed |
|
25 |
+ |
|
26 |
+*cannot get seqinfo(GmapGenome) if genome created with |
|
27 |
+ DNAStringSet. Also, R issues warnings during creation about |
|
28 |
+ contigs. Currently, the unity test for seqinfo(GmapGenome) does not |
|
29 |
+ exist because of this. |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/gmapR@58341 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,14 @@ |
1 |
+*use BSGenome and Bioc dbSNP objects instead of downloading from UCSC. |
|
2 |
+ |
|
3 |
+*globals function needs to set elements in the list returned by |
|
4 |
+ options() instead of using the globals() fun. Other wise |
|
5 |
+ HTSeqGenieBase and gmapR will both have exported globals() functions |
|
6 |
+ |
|
7 |
+*HTSeqGenieBase needs to depend on gmapR and not contain now-redundant |
|
8 |
+ code. To to this, HTSeqGenieBase::globals() needs to have entries |
|
9 |
+ removed now in gmapR::globals() |
|
10 |
+ |
|
11 |
+*configureGmapR.R calls buildGmapIndex, buildGmapDbSNPIndex, and |
|
12 |
+buildRefseqSpliceSites. These are high-level functions that obtain |
|
13 |
+hg19 data and call more generalized functions. These high-level |
|
14 |
+functions belong in HTSeqGenieBase. |