Skip to content

Commit fef3f3e

Browse files
author
Renaud
committed
Fixed broken links (fixes #2)
1 parent d33ca29 commit fef3f3e

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ library(bseqsc)
2828

2929
## More information
3030

31-
* [Detailed installation instructions](http://shenorrlab.github.io/bseqsc/articles/pages/installation.html)
31+
* [Detailed installation instructions](http://shenorrlab.github.io/bseqsc/vignettes/pages/installation.html)
3232
* [Sample analysis](http://shenorrlab.github.io/bseqsc/vignettes/bseq-sc.html)
3333
* [Documentation](http://shenorrlab.github.io/bseqsc/reference/index.html)
3434

_pkgdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ navbar:
77
- text: "Documentation"
88
href: "reference/index.html"
99
- dir: vignettes/pages
10-
output: articles/pages
10+
output: vignettes/pages
1111
right:
1212
- icon: fa-github
1313
href: https://github.com/shenorrlab/bseq-sc

vignettes/bseq-sc.Rmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ opts_chunk$set(dpi=300, dev="png")#, dev.args=list(pointsize=15))
3535
IS_PKGDOWN <- nzchar(Sys.getenv('_R_PKGDOWN_RENDER'))
3636
# packages
3737
library(BiocStyle)
38-
# pkgmaker::load_project(pancreas)
38+
# pkgmaker::load_project('pancreas/bseq-sc')
3939
library(bseqsc)
4040
library(ggplot2)
4141
library(reshape2)
@@ -70,7 +70,7 @@ When using this work in any way, please cite the following work:
7070
## Software
7171

7272
In order to run the entire deconvolution pipeline, users need to install the `r Githubpkg('shenorrlab/bseq-sc', 'bseqsc')` R package from GitHub.
73-
See the [installtion instructions](installation.html) for details.
73+
See the [installtion instructions](pages/installation.html) for details.
7474

7575
## Data
7676
`r BSEQSC` uses two types of input data:
@@ -109,15 +109,15 @@ Here we use two `ExpressionSet` objects to handle the bulk and single cell data
109109
The dataset's [GEO entry (GSE50244)](http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE50244) contains raw RNA-seq and sample annotation data.
110110
For the purpose of this vignette, we will use data that we pre-processed and
111111
made available on the [data
112-
download page](http://shenorrlab.github.io/BSeq-sc/data).
112+
download page](pages/data.html).
113113

114114
After pre-processing, the data were filtered to remove unmapped tags, or tags that mapped to pseudogenes, or known ribosomal/mithocondrial genes (list available in file `data/genes_mitrib.txt.gz` or via function `getMITRIB()` provided in the package).
115115
Moreover, counts from transcripts that mapped to a same gene were averaged.
116116
Sample phenotypic annotations were also processed to define glycemic groups based on *hba1c* measurements, as per the original publication [@Fadista2014].
117117

118118
```{r, eval = !local_data}
119119
# download GEO dataset from Github
120-
eset <- readRDS('http://shenorrlab.github.io/BSeq-sc/data/GSE50244.rds')
120+
eset <- readRDS('https://shenorrlab.github.io/bseqsc/data/GSE50244.rds')
121121
```
122122
```{r, eset}
123123
# for this analysis we only look at samples with hba1c data
@@ -128,10 +128,10 @@ eset
128128
### Single cell data
129129
We generated single cell RNA-seq data of pancreatic islets from 3 healthy individuals, which provided gene expression profiles for 17434 genes in 7729 cells.
130130
The raw counts for these data are available on the [data download
131-
page](http://shenorrlab.github.io/BSeq-sc/data), in the form of an
131+
page](pages/data.html), in the form of an
132132
`ExpressionSet`:
133133
```{r islet_eset, eval = !local_data}
134-
eislet <- readRDS('http://shenorrlab.github.io/BSeq-sc/data/islet-eset.rds')
134+
eislet <- readRDS('https://shenorrlab.github.io/bseqsc/data/islet-eset.rds')
135135
eislet
136136
```
137137

vignettes/pages/data.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ output:
66
---
77

88
* [Processed RNA-seq data from bulk pancreatic islets in healthy and
9-
hyperglycemic individuals (GSE50244)](../data/GSE50244.rds)
9+
hyperglycemic individuals (GSE50244)](../../data/GSE50244.rds)
1010
* [Single cell RNA-seq data of pancreatic islets from healthy
11-
individuals](../data/islet-eset.rds)
11+
individuals](../../data/islet-eset.rds)

vignettes/pages/installation.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ installed from GitHub by:
1414
install.packages('devtools')
1515
1616
# install bseqsc
17-
devtools::install_github('shenorrlab/bseq-sc')
17+
devtools::install_github('shenorrlab/bseqsc')
1818
1919
# load
2020
library(bseqsc)

0 commit comments

Comments
 (0)