Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SplicingFactory #1517

Closed
8 tasks done
peterszikora opened this issue Jun 14, 2020 · 49 comments
Closed
8 tasks done

SplicingFactory #1517

peterszikora opened this issue Jun 14, 2020 · 49 comments
Assignees
Labels
3a. accepted will be ingested into Bioconductor daily builder for distribution OK

Comments

@peterszikora
Copy link

Update the following URL to point to the GitHub repository of
the package you wish to submit to Bioconductor

Confirm the following by editing each check box to '[x]'

  • I understand that by submitting my package to Bioconductor,
    the package source and all review commentary are visible to the
    general public.

  • I have read the Bioconductor [Package Submission][2]
    instructions. My package is consistent with the Bioconductor
    [Package Guidelines][1].

  • I understand that a minimum requirement for package acceptance
    is to pass R CMD check and R CMD BiocCheck with no ERROR or WARNINGS.
    Passing these checks does not result in automatic acceptance. The
    package will then undergo a formal review and recommendations for
    acceptance regarding other Bioconductor standards will be addressed.

  • My package addresses statistical or bioinformatic issues related
    to the analysis and comprehension of high throughput genomic data.

  • I am committed to the long-term maintenance of my package. This
    includes monitoring the [support site][3] for issues that users may
    have, subscribing to the [bioc-devel][4] mailing list to stay aware
    of developments in the Bioconductor community, responding promptly
    to requests for updates from the Core team in response to changes in
    R or underlying software.

I am familiar with the essential aspects of Bioconductor software
management, including:

  • The 'devel' branch for new packages and features.
  • The stable 'release' branch, made available every six
    months, for bug fixes.
  • Bioconductor version control using [Git][5]
    (optionally [via GitHub][6]).

For help with submitting your package, please subscribe and post questions
to the [bioc-devel][4] mailing list.

@bioc-issue-bot
Copy link
Collaborator

Hi @peterszikora

Thanks for submitting your package. We are taking a quick
look at it and you will hear back from us soon.

The DESCRIPTION file for this package is:

Package: SplicingFactory
Type: Package
Title: Splicing Diversity Analysis for Transcriptome Data
biocViews: Transcriptomics, RNASeq, DifferentialSplicing, AlternativeSplicing, TranscriptomeVariant
Version: 0.99.0
Authors@R: c(
    person("Peter A.", "Szikora", role = c("aut", "cre"), email = "peter.andras.szikora@gmail.com"),
    person("Endre", "Sebestyen", role = "aut", email = "sebestyen.endre@med.semmelweis-univ.hu", comment = c(ORCID = "0000-0001-5470-2161")))
Description: The SplicingFactory R package uses transcript-level expression
    values to analyze splicing diversity based on various statistical measures,
    like Shannon entropy or the Gini index. These measures can quantify
    transcript isoform diversity within samples or between conditions.
    Additionally, the package analyzes the isoform diversity data, looking for
    significant changes between conditions.
RoxygenNote: 7.1.0
Imports: methods, stats, Biobase, ggplot2, tidyr
Suggests:
    testthat,
    knitr,
    rmarkdown
Depends: R (>= 4.0)
License: GPL-3 + file LICENSE
Encoding: UTF-8
LazyData: true
VignetteBuilder: knitr

Add SSH keys to your GitHub account. SSH keys
will are used to control access to accepted Bioconductor
packages. See these instructions to add SSH keys to
your GitHub account.

@bioc-issue-bot
Copy link
Collaborator

A reviewer has been assigned to your package. Learn what to expect
during the review process.

IMPORTANT: Please read the instructions for setting
up a push hook on your repository, or further changes to your
repository will NOT trigger a new build.

@bioc-issue-bot bioc-issue-bot added 2. review in progress assign a reviewer and a more thorough review of package code and documentation taking place and removed 1. awaiting moderation labels Jun 14, 2020
@mtmorgan
Copy link
Contributor

Please update your package to use SummarizedExperiment rather than ExpressionSet.

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

On one or more platforms, the build results were: "ERROR".
This may mean there is a problem with the package that you need to fix.
Or it may mean that there is a problem with the build system itself.

Please see the build report for more details.

@bioc-issue-bot
Copy link
Collaborator

Received a valid push; starting a build. Commits are:

a71102a Version bump

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

On one or more platforms, the build results were: "ERROR".
This may mean there is a problem with the package that you need to fix.
Or it may mean that there is a problem with the build system itself.

Please see the build report for more details.

@LiNk-NY
Copy link

LiNk-NY commented Jun 18, 2020

Hi @peterszikora ,
Any updates on using SummarizedExperiment?
Thanks.

@peterszikora
Copy link
Author

Hi, thank you for the comment, working on it.

@bioc-issue-bot
Copy link
Collaborator

Received a valid push; starting a build. Commits are:

5886bb9 SummarizedExperiment input type instead of Express...

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

On one or more platforms, the build results were: "ERROR".
This may mean there is a problem with the package that you need to fix.
Or it may mean that there is a problem with the build system itself.

Please see the build report for more details.

@esebesty
Copy link

Hi @mtmorgan and @LiNk-NY

We were discussing the right way to use SummarizedExperiment and were curious about your opinion. Right now, the package deals with data where we have a single table with samples as columns and transcripts as rows. However, SummarizedExperiment might contain more than one assay with a matrix-like representation of read counts, etc. We don't want to simply pick the first assay for further analysis, so we were wondering what to do.

  • Just pick the first assay, or an assay with a specific name.
  • Implement some parameter for the calculate_diversity function, to specify the assay to be analyzed.
  • Loop over the entire SummarizedExperiment object, process all tables, and return a list of data frames. This would mean additional complications in downstream analysis too.

Initially we decided to use ExpressionSet as similar tools, doing differential expression, like limma also use ExpressionSet. voom and lmFit of limma both expect a matrix-like data object.

@LiNk-NY
Copy link

LiNk-NY commented Jun 24, 2020

Hi Endre, @esebesty

I think the best option would be to include an argument ('parameter') in the calculate_diversity
function with default of 1 for the first assay in the SummarizedExperiment. The user will also
have the option to change the argument to their liking.

Using these tools (limma etc.) should be separate from the functionality and data representation
you provide. Ideally, these tools would accept a SummarizedExperiment as input. The
responsibility then falls on the analyst to provide the correct input for these tools. They would have
to use assay(SE) to get the matrix data.

I hope this answers your questions.
Best,
Marcel

@bioc-issue-bot
Copy link
Collaborator

Received a valid push; starting a build. Commits are:

58099c2 SummarizedExperiment updated

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

Congratulations! The package built without errors or warnings
on all platforms.

Please see the build report for more details.

@bioc-issue-bot bioc-issue-bot added OK and removed ERROR labels Jun 25, 2020
@peterszikora
Copy link
Author

@mtmorgan and @LiNk-NY

Thank you again for your comments, we updated the package with SummarizedExperiment, waiting for your detailed review.

@LiNk-NY
Copy link

LiNk-NY commented Jun 30, 2020

Hi @peterszikora

Thank you for your submission.
Please see the review below.
If you have any questions, continue the thread here.

Best,
Marcel


SplicingFactory #1517

DESCRIPTION

  • Looks good

NAMESPACE

  • Looks straightforward

vignettes/

  • Looks good

R

  • Use is.matrix and is(x, "SummarizedExperiment") type of methods
    for obtaining the class of the input object.
  • Use a verbose argument for all the messages in calculate_diversity
    and other functions
  • User-facing functions should allow a SummarizedExperiment input
    (calculate_method, calculate_diversity, etc.) and ideally return a
    SummarizedExperiment
  • Allow for alternative correction methods in wilcoxon. Is BH the only
    correction method? It seems to be hard-coded.
  • Should calculate_*entropy and related functions be exported and work on
    a SummarizedExperiment object?
  • Bothcalculcate_entropy and calculate_laplace_entropy look about the same,
    perhaps make them into one function with a type argument so that you're
    re-using code?

data

  • Rename the dataset example_dataset into something more descriptive
  • If possible, re-use data from an existing TCGA data resource (or even
    GenomicDataCommons)

@bioc-issue-bot
Copy link
Collaborator

Received a valid push; starting a build. Commits are:

49fe913 Example dataset and formatting updates
3901973 Bug and formatting corrections, verbose parameter ...

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

On one or more platforms, the build results were: "ERROR".
This may mean there is a problem with the package that you need to fix.
Or it may mean that there is a problem with the build system itself.

Please see the build report for more details. This link will be active
for 21 days.

Remember: if you submitted your package after July 7th, 2020,
when making changes to your repository push to
git@git.bioconductor.org:packages/SplicingFactory to trigger a new build.
A quick tutorial for setting up remotes and pushing to upstream can be found here.

@bioc-issue-bot bioc-issue-bot added ERROR and removed OK labels Jul 10, 2020
@bioc-issue-bot
Copy link
Collaborator

Received a valid push; starting a build. Commits are:

fcc3ea5 SummarizedExperiment and vignette updates

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

On one or more platforms, the build results were: "ERROR, skipped".
This may mean there is a problem with the package that you need to fix.
Or it may mean that there is a problem with the build system itself.

Please see the build report for more details. This link will be active
for 21 days.

Remember: if you submitted your package after July 7th, 2020,
when making changes to your repository push to
git@git.bioconductor.org:packages/SplicingFactory to trigger a new build.
A quick tutorial for setting up remotes and pushing to upstream can be found here.

@bioc-issue-bot
Copy link
Collaborator

This issue is being closed because there has been no progress
for an extended period of time. You may reopen the issue when
you have the time to actively participate in the review /
submission process. Please also keep in mind that a package
accepted to Bioconductor requires a commitment on your part to
ongoing maintenance.

Thank you for your interest in Bioconductor.

@lshep lshep added 3c. inactive no activity from submitter for extended period of time and package not in a place to be accepted and removed 2. review in progress assign a reviewer and a more thorough review of package code and documentation taking place labels Oct 7, 2020
@bioc-issue-bot bioc-issue-bot changed the title SplicingFactory (inactive) SplicingFactory Oct 7, 2020
@esebesty
Copy link

Please reopen the issue, we are (hopefully) done with all necessary changes.

@mtmorgan mtmorgan added 2. review in progress assign a reviewer and a more thorough review of package code and documentation taking place and removed 3c. inactive no activity from submitter for extended period of time and package not in a place to be accepted labels Nov 26, 2020
@mtmorgan mtmorgan reopened this Nov 26, 2020
@bioc-issue-bot
Copy link
Collaborator

Received a valid push; starting a build. Commits are:

c942c59 Minor correction and github actions update

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

On one or more platforms, the build results were: "WARNINGS".
This may mean there is a problem with the package that you need to fix.
Or it may mean that there is a problem with the build system itself.

Please see the build report for more details. This link will be active
for 21 days.

Remember: if you submitted your package after July 7th, 2020,
when making changes to your repository push to
git@git.bioconductor.org:packages/SplicingFactory to trigger a new build.
A quick tutorial for setting up remotes and pushing to upstream can be found here.

@bioc-issue-bot
Copy link
Collaborator

Received a valid push; starting a build. Commits are:

c88017f R version update

@bioc-issue-bot
Copy link
Collaborator

Dear Package contributor,

This is the automated single package builder at bioconductor.org.

Your package has been built on Linux, Mac, and Windows.

Congratulations! The package built without errors or warnings
on all platforms.

Please see the build report for more details. This link will be active
for 21 days.

Remember: if you submitted your package after July 7th, 2020,
when making changes to your repository push to
git@git.bioconductor.org:packages/SplicingFactory to trigger a new build.
A quick tutorial for setting up remotes and pushing to upstream can be found here.

@LiNk-NY LiNk-NY changed the title (inactive) SplicingFactory SplicingFactory Dec 1, 2020
@LiNk-NY
Copy link

LiNk-NY commented Dec 1, 2020

Hi Endre, @esebesty
Thank you for making those changes. I had a look at the package and it looks good.
I'm accepting it.
Best regards,
Marcel

@LiNk-NY LiNk-NY added 3a. accepted will be ingested into Bioconductor daily builder for distribution and removed 2. review in progress assign a reviewer and a more thorough review of package code and documentation taking place labels Dec 1, 2020
@bioc-issue-bot
Copy link
Collaborator

Your package has been accepted. It will be added to the
Bioconductor nightly builds.

Thank you for contributing to Bioconductor!

@mtmorgan
Copy link
Contributor

mtmorgan commented Dec 1, 2020

The master branch of your GitHub repository has been added to Bioconductor's git repository.

To use the git.bioconductor.org repository, we need an 'ssh' key to associate with your github user name. If your GitHub account already has ssh public keys (https://github.com/peterszikora.keys is not empty), then no further steps are required. Otherwise, do the following:

  1. Add an SSH key to your github account
  2. Submit your SSH key to Bioconductor

See further instructions at

https://bioconductor.org/developers/how-to/git/

for working with this repository. See especially

https://bioconductor.org/developers/how-to/git/new-package-workflow/
https://bioconductor.org/developers/how-to/git/sync-existing-repositories/

to keep your GitHub and Bioconductor repositories in sync.

Your package will be included in the next nigthly 'devel' build (check-out from git at about 6 pm Eastern; build completion around 2pm Eastern the next day) at

https://bioconductor.org/checkResults/

(Builds sometimes fail, so ensure that the date stamps on the main landing page are consistent with the addition of your package). Once the package builds successfully, you package will be available for download in the 'Devel' version of Bioconductor using BiocManager::install("SplicingFactory"). The package 'landing page' will be created at

https://bioconductor.org/packages/SplicingFactory

If you have any questions, please contact the bioc-devel mailing list (https://stat.ethz.ch/mailman/listinfo/bioc-devel); this issue will not be monitored further.

@mtmorgan mtmorgan closed this as completed Dec 1, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3a. accepted will be ingested into Bioconductor daily builder for distribution OK
Projects
None yet
Development

No branches or pull requests

6 participants