Skip to content

Commit

Permalink
fix: dead URLs in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
m-jahn committed Jan 13, 2025
1 parent efc18c6 commit 5ea4f11
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 27 deletions.
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ graphics::mtext(
graphics::par(opar)
```

Default color scheme for amino acid annotation is from [Residual colours: a proposal for aminochromography](https://academic.oup.com/peds/article/10/7/743/1593029?login=false):
Default color scheme for amino acid annotation is from [Residual colours: a proposal for aminochromography](https://pubmed.ncbi.nlm.nih.gov/9342138/):

```{r aa_color_scheme, warning = FALSE, fig.height = 9, fig.width = 10, fig.align = "center"}
aa_color <- c(
Expand Down Expand Up @@ -678,7 +678,7 @@ The Hi-C method maps chromosome contacts in eukaryotic cells.
For this purpose, DNA and protein complexes are cross-linked and DNA fragments then purified.
As a result, even distant chromatin fragments can be found to interact due to the spatial organization of the DNA and histones in the cell. Hi-C data shows these interactions for example as a contact map.

The Hi-C data is taken from [pyGenomeTracks: reproducible plots for multivariate genomic datasets](https://academic.oup.com/bioinformatics/article/37/3/422/5879987?login=false).
The Hi-C data is taken from [pyGenomeTracks: reproducible plots for multivariate genomic datasets](https://pubmed.ncbi.nlm.nih.gov/32745185/).

The Hi-C matrix visualization is implemented by [`HiCBricks`](https://github.com/koustav-pal/HiCBricks).
This package needs to be installed separately (it is only 'Suggested' by `ggcoverage`).
Expand Down Expand Up @@ -788,7 +788,7 @@ basic_coverage +

### Load coverage

The exported coverage from [Proteome Discoverer](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8006021/):
The exported coverage from [Proteome Discoverer](https://doi.org/10.3390/proteomes9010015):

```{r ms_coverage_data}
library(openxlsx)
Expand Down
24 changes: 3 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,9 +337,6 @@ library(ggbio)
#>
#> geom_bar, geom_rect, geom_segment, ggsave, stat_bin, stat_identity,
#> xlim
```

``` r

basic_coverage +
geom_gene(gtf.gr = gtf_gr) +
Expand Down Expand Up @@ -459,9 +456,6 @@ library("BSgenome.Hsapiens.UCSC.hg19")
#> The following object is masked from 'package:BiocIO':
#>
#> FileForFormat
```

``` r

# create plot
basic_coverage +
Expand Down Expand Up @@ -497,9 +491,6 @@ track_df <- LoadTrackFile(
region = "4:1-160000000"
)
#> No metadata provided, returning coverage as is.
```

``` r

# add chr prefix
track_df$seqnames <- paste0("chr", track_df$seqnames)
Expand Down Expand Up @@ -606,9 +597,6 @@ track_df <- LoadTrackFile(
#> No 'region' specified; extracting coverage for an example range
#> (<=100,000 bases, first annotated sequence)
#> Coverage extracted from sequence/chromosome: chr10
```

``` r

head(track_df)
#> seqnames start end width strand score Type Group
Expand Down Expand Up @@ -669,7 +657,7 @@ graphics::par(opar)

Default color scheme for amino acid annotation is from [Residual
colours: a proposal for
aminochromography](https://academic.oup.com/peds/article/10/7/743/1593029?login=false):
aminochromography](https://doi.org/10.1093/protein/10.7.743):

``` r
aa_color <- c(
Expand Down Expand Up @@ -910,7 +898,7 @@ a contact map.

The Hi-C data is taken from [pyGenomeTracks: reproducible plots for
multivariate genomic
datasets](https://academic.oup.com/bioinformatics/article/37/3/422/5879987?login=false).
datasets](https://doi.org/10.1093/bioinformatics/btaa692).

The Hi-C matrix visualization is implemented by
[`HiCBricks`](https://github.com/koustav-pal/HiCBricks). This package
Expand All @@ -931,9 +919,6 @@ track_df <- LoadTrackFile(
extend = 0
)
#> No metadata provided, returning coverage as is.
```

``` r

track_df$score <- ifelse(track_df$score < 0, 0, track_df$score)

Expand Down Expand Up @@ -1021,9 +1006,6 @@ library(HiCBricks)
#> The following object is masked from 'package:Biostrings':
#>
#> pattern
```

``` r

basic_coverage +
geom_tad(
Expand Down Expand Up @@ -1066,7 +1048,7 @@ quality of the data.
### Load coverage

The exported coverage from [Proteome
Discoverer](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8006021/):
Discoverer](https://doi.org/10.3390/proteomes9010015):

``` r
library(openxlsx)
Expand Down
6 changes: 3 additions & 3 deletions vignettes/ggcoverage.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ graphics::mtext(
graphics::par(opar)
```

Default color scheme for amino acid annotation is from [Residual colours: a proposal for aminochromography](https://academic.oup.com/peds/article/10/7/743/1593029?login=false):
Default color scheme for amino acid annotation is from [Residual colours: a proposal for aminochromography](https://pubmed.ncbi.nlm.nih.gov/9342138/):

```{r aa_color_scheme, warning = FALSE, fig.height = 9, fig.width = 10, fig.align = "center"}
aa_color <- c(
Expand Down Expand Up @@ -705,7 +705,7 @@ The Hi-C method maps chromosome contacts in eukaryotic cells.
For this purpose, DNA and protein complexes are cross-linked and DNA fragments then purified.
As a result, even distant chromatin fragments can be found to interact due to the spatial organization of the DNA and histones in the cell. Hi-C data shows these interactions for example as a contact map.

The Hi-C data is taken from [pyGenomeTracks: reproducible plots for multivariate genomic datasets](https://academic.oup.com/bioinformatics/article/37/3/422/5879987?login=false).
The Hi-C data is taken from [pyGenomeTracks: reproducible plots for multivariate genomic datasets](https://pubmed.ncbi.nlm.nih.gov/32745185/).

The Hi-C matrix visualization is implemented by [`HiCBricks`](https://github.com/koustav-pal/HiCBricks).
This package needs to be installed separately (it is only 'Suggested' by `ggcoverage`).
Expand Down Expand Up @@ -819,7 +819,7 @@ knitr::include_graphics("../man/figures/README-hic_coverage-1.png")

### Load coverage

The exported coverage from [Proteome Discoverer](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8006021/):
The exported coverage from [Proteome Discoverer](https://pmc.ncbi.nlm.nih.gov/articles/PMC8006021/):

```{r ms_coverage_data, eval = FALSE}
library(openxlsx)
Expand Down

0 comments on commit 5ea4f11

Please sign in to comment.