Skip to content

Commit e9514e1

Browse files
committed
Fixed little issues so that it ran on all three OS's on the bioconductor submission page. This is the version submitted on april 2, 2014 to bioconductor.
1 parent 4222b23 commit e9514e1

11 files changed

+35
-21
lines changed

.Rbuildignore

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
.Rhistory
55
.RData
66
.DS_Store
7-
inst/doc/Sushi-0*.pdf
8-
inst/doc/Sushi.log
9-
inst/doc/Sushi.synctex.gz
10-
inst/doc/Sushi-concordance.tex
11-
inst/doc/Sushi.tex
12-
inst/doc/Sushi.toc
7+
vignettes/Sushi-*.pdf
8+
vignettes/*.png
9+
vignettes/Sushi.log
10+
vignettes/Sushi.synctex.gz
11+
vignettes/Sushi-concordance.tex
12+
vignettes/Sushi.tex
13+
vignettes/Sushi.toc

.gitignore

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
.Rhistory
33
.RData
44
.DS_Store
5-
inst/doc/Sushi-*.pdf
6-
inst/doc/Sushi.log
7-
inst/doc/Sushi.synctex.gz
8-
inst/doc/Sushi-concordance.tex
9-
inst/doc/Sushi.tex
10-
inst/doc/Sushi.toc
5+
vignettes/Sushi-*.pdf
6+
vignettes/*.png
7+
vignettes/Sushi.log
8+
vignettes/Sushi.synctex.gz
9+
vignettes/Sushi-concordance.tex
10+
vignettes/Sushi.tex
11+
vignettes/Sushi.toc

DESCRIPTION

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
Package: Sushi
22
Type: Package
33
Title: Tools for visualizing genomics data
4-
Version: 1.0
4+
Description: Flexible, quantitative, and integrative genomic visualizations for publication-quality multi-panel figures
5+
Version: 0.99.0
56
Date: 2014-02-17
67
Author: Douglas H Phanstiel <[email protected]>
78
Maintainer: Douglas H Phanstiel <[email protected]>
8-
Description: Tools for visualizing genomics data
9+
biocViews: DataRepresentation, Visualization, Genetics, Sequencing, Infrastructure,
910
License: GPL (>= 2)
10-
Depends: zoo,biomaRt
11+
Depends: R (>= 2.10), zoo,biomaRt

NAMESPACE

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
exportPattern("^[[:alpha:]]+")
2+
3+
import(biomaRt)
4+
import(zoo)

inst/doc/Rplots.pdf

-4.28 MB
Binary file not shown.

man/plotgenes.Rd

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ plotGenes(geneinfo = NULL, chrom = NULL, chromstart = NULL,
1313
}
1414
\arguments{
1515
\item{geneinfo}{gene info stored in a bed-like format.
16-
If NULL it will look up genes in the region using
17-
biomart="ensembl" and dataset="hsapiens_gene_ensembl".
18-
See also \code{\link{useMart}}}
16+
If NULL it will look up genes in the region using biomart
17+
(with biomart="ensembl" and
18+
dataset="hsapiens_gene_ensembl"). See also
19+
\code{\link{useMart}}}
1920

2021
\item{chrom}{chromosome of region to be plotted}
2122

Binary file not shown.

inst/doc/PaperFigure.R vignettes/PaperFigure.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
library('Sushi')
2-
pdfname = "inst/doc/Figure_dhp_new.pdf"
2+
pdfname = "inst/doc/Figure_1.pdf"
33
Sushi_data = data(package = 'Sushi')
44
data(list = Sushi_data$results[,3])
55
makepdf = TRUE

inst/doc/Sushi.Rnw vignettes/Sushi.Rnw

+9-2
Original file line numberDiff line numberDiff line change
@@ -1122,14 +1122,21 @@ dev.off()
11221122
@
11231123
\includegraphics{GWAS3}
11241124
\end{center}
1125-
1125+
\begin{center}
1126+
<<fig=FALSE, echo=FALSE>>=
1127+
if (file.exists("Rplots.pdf"))
1128+
{
1129+
file.remove("Rplots.pdf")
1130+
}
1131+
@
1132+
\end{center}
11261133
\section{Appendix}
11271134

11281135
For illustrative purposes we include a complex figure as published in the accompanying manuscript (Phanstiel, et al.).
11291136

11301137
\lstinputlisting[language=R, breaklines=TRUE, basicstyle=\small, numbers=left]{PaperFigure.R}
11311138

1132-
\includegraphics{Figure_dhp_new.pdf}
1139+
\includegraphics{Figure_1.pdf}
11331140

11341141
\bibliography{Sushi}
11351142
\bibliographystyle{plainnat}
File renamed without changes.
2.25 MB
Binary file not shown.

0 commit comments

Comments
 (0)