Skip to content

Commit

Permalink
Merge branch 'devel' of git.bioconductor.org:packages/tximeta into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelove committed Sep 27, 2024
2 parents a358e7b + ccf9675 commit e91175a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
fail-fast: false
matrix:
config:
- { os: ubuntu-latest, r: '4.3', bioc: '3.18', cont: "bioconductor/bioconductor_docker:RELEASE_3_18", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
- { os: ubuntu-latest, r: '4.4', bioc: '3.19', cont: "bioconductor/bioconductor_docker:RELEASE_3_19", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}
Expand Down Expand Up @@ -106,16 +106,16 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_18-r-4.3-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_18-r-4.3-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_19-r-4.4-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_19-r-4.4-

- name: Cache R packages on Linux
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
uses: actions/cache@v2
with:
path: /home/runner/work/_temp/Library
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_18-r-4.3-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_18-r-4.3-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_19-r-4.4-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_19-r-4.4-

- name: Install Linux system dependencies
if: runner.os == 'Linux'
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
if: failure()
uses: actions/upload-artifact@master
with:
name: ${{ runner.os }}-biocversion-RELEASE_3_18-r-4.3-results
name: ${{ runner.os }}-biocversion-RELEASE_3_19-r-4.4-results
path: check

- uses: docker/build-push-action@v1
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: tximeta
Version: 1.23.1
Version: 1.23.2
Title: Transcript Quantification Import with Automatic Metadata
Description: Transcript quantification import from Salmon and
other quantifiers with automatic attachment of transcript ranges
Expand Down
6 changes: 4 additions & 2 deletions R/summarizeToGene.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ summarizeToGene.SummarizedExperiment <- function(object,

# note here about how ranges are assigned
if (assignRanges == "abundant") {
message("gene ranges assigned by isoform abundance, see `assignRanges`")
message("assignRanges='abundant': gene ranges assigned by isoform abundance
see details at: ?summarizeToGene,SummarizedExperiment-method")
} else {
message("gene ranges assigned by total range of isoforms, see `assignRanges`")
message("assignRanges='range': gene ranges assigned by total range of isoforms
see details at: ?summarizeToGene,SummarizedExperiment-method")
}

txi.gene <- summarizeToGene(object=txi, tx2gene=tx2gene, varReduce=varReduce, ...)
Expand Down
3 changes: 1 addition & 2 deletions R/tximeta.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,10 @@
#'
#' @author Michael I. Love, Charlotte Soneson, Peter Hickey, Rob Patro
#'
#' @docType package
#' @name tximeta-package
#' @aliases tximeta-package
#' @keywords package
NULL
"_PACKAGE"

#' Import transcript quantification with metadata
#'
Expand Down

0 comments on commit e91175a

Please sign in to comment.