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

dominoSignal #3416

Open
10 tasks done
jmitchell81 opened this issue May 13, 2024 · 5 comments
Open
10 tasks done

dominoSignal #3416

jmitchell81 opened this issue May 13, 2024 · 5 comments
Labels
1. awaiting moderation submitted and waiting clearance to access resources 3d. needs interop Package must explicitly use Bioconductor structures and methods 3e. pending pre-review changes review has indicated blocking concern that needs attention

Comments

@jmitchell81
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
    instructions. My package is consistent with the Bioconductor
    Package Guidelines.

  • I understand Bioconductor Package Naming Policy and acknowledge
    Bioconductor may retain use of package name.

  • 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 for issues that users may
    have, subscribing to the bioc-devel 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 Bioconductor code of conduct and
    agree to abide by it.

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
    (optionally via GitHub).

For questions/help about the submission process, including questions about
the output of the automatic reports generated by the SPB (Single Package
Builder), please use the #package-submission channel of our Community Slack.
Follow the link on the home page of the Bioconductor website to sign up.

@bioc-issue-bot
Copy link
Collaborator

Hi @jmitchell81

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: dominoSignal
Title: Cell Communication Analysis for Single Cell RNA Sequencing
Version: 0.99.2
Authors@R: c(
    person("Christopher", "Cherry", role = c("aut"), email = "ccherry.6574@gmail.com", comment = c(ORCID = "0000-0002-5481-0055")),
    person("Jacob T", "Mitchell", role = c("aut", "cre"), email = "jmitch81@jhmi.edu", comment = c(ORCID = "0000-0002-5370-9692")),
    person("Sushma", "Nagaraj", role = c("aut"), email = "snagara5@jhmi.edu", comment = c(ORCID = "0000-0001-5166-1309")),
    person("Kavita", "Krishnan", role = c("aut"), email = "kkrishnan@jhmi.edu", comment = c(ORCID = "0000-0003-1345-0249")),
    person("Dmitrijs", "Lvovs", role = c("aut"), email = "dlvovs1@jhmi.edu"),
    person("Elana", "Fertig", role = "ctb", email = "ejfertig@jhmi.edu", comment = c(ORCID = "0000-0003-3204-342X")),
    person("Jennifer", "Elisseeff", role = "ctb", email = "jhe@jhu.edu", comment = c(ORCID = "0000-0002-5066-1996"))
    )
Description: 
    dominoSignal is a package developed to analyze cell signaling through ligand - receptor - transcription factor networks in scRNAseq data. It takes as input information transcriptomic data, requiring counts, z-scored counts, and cluster labels, as well as information on transcription factor activation (such as from SCENIC) and a database of ligand and receptor pairings (such as from cellphoneDB). This package creates an object storing ligand - receptor - transcription factor linkages by cluster and provides several methods for exploring, summarizing, and visualizing the analysis.
BugReports: https://github.com/FertigLab/dominoSignal/issues
Depends:
    R(>= 4.2.0),
Imports:
    biomaRt,
    ComplexHeatmap,
    circlize,
    ggpubr,
    grDevices,
    grid,
    igraph,
    Matrix,
    methods,
    plyr,
    stats,
    utils
License: GPL-3 | file LICENSE
Encoding: UTF-8
LazyData: false
RoxygenNote: 7.3.1
biocViews:
    SystemsBiology,
    SingleCell,
    Transcriptomics,
    Network
Suggests:
    knitr,
    patchwork,
    rmarkdown,
    Seurat,
    testthat,
    formatR,
    BiocFileCache,
    SingleCellExperiment
VignetteBuilder: knitr
Language: en-US
Roxygen: list(markdown = TRUE)
URL: https://fertiglab.github.io/dominoSignal/

@bioc-issue-bot bioc-issue-bot added the 1. awaiting moderation submitted and waiting clearance to access resources label May 13, 2024
@lshep
Copy link
Contributor

lshep commented May 20, 2024

Please see previous comments on initial submission. In summary:

vignette

  • Please show things like options and set.seeds to users so they can
    accurately run and reproduce the code in the vignette.

  • We don't allow data to be on github. can the data retrieved from github
    also be moved to a trusted site like zenodo.

  • Vignette code must be executable. Currently no code is evaluated.

General

  • There is currently no interop with Bioconductor standard classes for
    single cell. Please adjust package to also account for this and show
    examples. See SingleCellExperiment packages/class.

  • Packages used in vignettes and examples must be on CRAN or Bioconductor.

It also appears the re-naming is not complete:

R CMD build dominoSignal 
* checking for file 'dominoSignal/DESCRIPTION' ... OK
* preparing 'dominoSignal':
* checking DESCRIPTION meta-information ... OK
* installing the package to build vignettes
* creating vignettes ... ERROR
--- re-building ‘domino2.Rmd’ using rmarkdown

Quitting from lines  at lines 24-32 [libraries] (domino2.Rmd)
Error: processing vignette 'domino2.Rmd' failed with diagnostics:
there is no package called 'domino2'
--- failed re-building ‘domino2.Rmd’

@lshep lshep added 3e. pending pre-review changes review has indicated blocking concern that needs attention 3d. needs interop Package must explicitly use Bioconductor structures and methods labels May 20, 2024
@jmitchell81
Copy link
Author

Hello @lshep. My apologies for this issues that were carried over from the last submission. We had an issue with our GitHub action for pushing development changes to this submission branch. I will have these resolved quickly.

To your point about data from GitHub, is this in regards points in the vignettes when data from the cellPhoneDB ligand-receptor database is downloaded from https://github.com/ventolab/cellphonedb-data/archive/refs/tags/v4.0.0.tar.gz ? This is data curated by another laboratory that we do not have permission to re-host on zenodo. We could use a toy data base for vignette examples if need be while directing to this data base resource in the documentation if we are not allowed to directly download from this source in the scripting of the vignette.

@lshep
Copy link
Contributor

lshep commented May 20, 2024

you can leave the github data for now and we can look into further in the review.

@jmitchell81
Copy link
Author

Thank you @lshep. I have corrected our submission branch at HEAD. We're ready for your review.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1. awaiting moderation submitted and waiting clearance to access resources 3d. needs interop Package must explicitly use Bioconductor structures and methods 3e. pending pre-review changes review has indicated blocking concern that needs attention
Projects
None yet
Development

No branches or pull requests

3 participants