-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from m-jahn/dev
feat: various improvements for loading files, GH actions, linting, R CMD CHECK fixes
- Loading branch information
Showing
71 changed files
with
1,827 additions
and
1,119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.github$ | ||
^LICENSE\.md$ | ||
^CODE_OF_CONDUCT\.md$ | ||
^CONTRIBUTING\.md$ | ||
^README\.Rmd$ | ||
^cran-comments\.md$ | ||
^CRAN-SUBMISSION$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^vignettes/CustomizeThePlot\.Rmd$ | ||
^vignettes/TimeAndMemory\.Rmd$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, dev] | ||
pull_request: | ||
branches: [main, dev] | ||
workflow_dispatch: | ||
|
||
name: R-CMD-check | ||
|
||
jobs: | ||
R-CMD-check: | ||
runs-on: ${{ matrix.config.os }} | ||
|
||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- {os: macos-latest, r: 'release'} | ||
- {os: windows-latest, r: 'release'} | ||
- {os: ubuntu-latest, r: 'release'} | ||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
R_KEEP_PKG_SOURCE: yes | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: ${{ matrix.config.r }} | ||
http-user-agent: ${{ matrix.config.http-user-agent }} | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
upload-snapshots: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
inst/doc | ||
.Rhistory | ||
.Rbuildignore | ||
.Rproj* | ||
.Rproj.user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
Package: ggcoverage | ||
Type: Package | ||
Title: Visualize Genome/Protein Coverage with Various Annotations | ||
Version: 1.2.0 | ||
Authors@R: | ||
Version: 1.3.0 | ||
Authors@R: c( | ||
person(given = "Yabing", | ||
family = "Song", | ||
role = c("aut", "cre"), | ||
email = "[email protected]") | ||
email = "[email protected]"), | ||
person(given = "Michael", | ||
family = "Jahn", | ||
email = "[email protected]", | ||
role = "aut", | ||
comment = c(ORCID = "0000-0002-3913-153X")) | ||
) | ||
Maintainer: Yabing Song <[email protected]> | ||
Description: The goal of 'ggcoverage' is to simplify the process of visualizing genome/protein coverage. It contains functions to | ||
load data from BAM, BigWig, BedGraph or txt/xlsx files, create genome/protein coverage plot, add various annotations to | ||
the coverage plot, including base and amino acid annotation, GC annotation, gene annotation, transcript annotation, ideogram annotation, | ||
peak annotation, contact map annotation, link annotation and peotein feature annotation. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.3.0 | ||
RoxygenNote: 7.3.1 | ||
URL: https://showteeth.github.io/ggcoverage/, https://github.com/showteeth/ggcoverage | ||
BugReports: https://github.com/showteeth/ggcoverage/issues | ||
biocViews: | ||
|
@@ -50,7 +56,7 @@ Imports: | |
BiocParallel, | ||
openxlsx, | ||
stringr, | ||
ggpp | ||
gridExtra | ||
Suggests: | ||
rmarkdown, | ||
knitr, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
YEAR: 2022 | ||
COPYRIGHT HOLDER: ggtrack authors | ||
YEAR: 2022-2024 | ||
COPYRIGHT HOLDER: ggcoverage authors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.