Bioconductor / Contributions

Contribute Packages to Bioconductor
134 stars 33 forks source link

xCell2 #3540

Open AlmogAngel opened 1 week ago

AlmogAngel commented 1 week ago

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 am familiar with the essential aspects of Bioconductor software management, including:

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 commented 1 week ago

Hi @AlmogAngel

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: xCell2
Type: Package
Title: A Tool for Generic Cell Type Enrichment Analysis
Version: 0.99.0
Authors@R: 
    c(person(given = "Almog", 
   family = "Angel", 
   role = c("aut", "cre"),
   email = "almog.angel@campus.technion.ac.il",
   comment = c(ORCID = "0009-0001-3297-6935")))
Description: xCell2 provides methods for cell type enrichment analysis using cell type signatures.
    It includes three main functions - 
    1. xCell2Train for training custom references objects from bulk or single-cell RNA-seq datasets.
    2. xCell2Analysis for conducting the cell type enrichment analysis using the custom reference.
    3. xCell2GetLineage for identifying dependencies between different cell types using ontology.
License: GPL (>= 3)
Encoding: UTF-8
LazyData: false
Depends: 
    R (>= 4.4.0)
biocViews: GeneExpression, Transcriptomics, Microarray, RNASeq, SingleCell, DifferentialExpression, ImmunoOncology, GeneSetEnrichment
Imports: 
    Rfast,
    singscore,
    ontoProc (>= 1.26.4),
    ontologyIndex,
    tibble,
    dplyr,
    BiocParallel,
    Matrix,
    minpack.lm,
    pracma,
    methods,
    readr,
    tidyr
Suggests:
    devtools,
    knitr,
    rmarkdown,
    testthat
RoxygenNote: 7.3.2
VignetteBuilder: knitr
URL: https://github.com/AlmogAngel/xCell2
BugReports: https://github.com/AlmogAngel/xCell2/issues
lshep commented 12 hours ago

Please remove the doc directory. These files should be created automatically through the R CMD build process.

If this package is working with gene expression it should also be able to use SummarizedExperiments/SingleCellExperiments; the standard Bioconductor class object for such data. Is there a reason it does not?