-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDESCRIPTION
95 lines (95 loc) · 2.88 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Package: BUSpaRse
Type: Package
Title: kallisto | bustools R utilities
Version: 1.18.1
Date: 2024-07-31
Authors@R:
c(person("Lambda", "Moses", email = "[email protected]",
role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-7092-9427")),
person("Lior", "Pachter", email = "[email protected]",
role = c("aut", "ths"),
comment = c(ORCID = "0000-0002-9164-6231")))
Description:
The kallisto | bustools pipeline is a fast and modular set of tools to
convert single cell RNA-seq reads in fastq files into gene count or
transcript compatibility counts (TCC) matrices for downstream analysis.
Central to this pipeline is the barcode, UMI, and set (BUS) file format.
This package serves the following purposes: First, this package allows users
to manipulate BUS format files as data frames in R and then convert them
into gene count or TCC matrices. Furthermore, since R and Rcpp code is
easier to handle than pure C++ code, users are encouraged to tweak the
source code of this package to experiment with new uses of BUS format and
different ways to convert the BUS file into gene count matrix. Second, this
package can conveniently generate files required to generate gene count
matrices for spliced and unspliced transcripts for RNA velocity. Here
biotypes can be filtered and scaffolds and haplotypes can be removed, and
the filtered transcriptome can be extracted and written to disk. Third,
this package implements utility functions to get transcripts and associated
genes required to convert BUS files to gene count matrices, to write the
transcript to gene information in the format required by bustools, and to
read output of bustools into R as sparses matrices.
BugReports: https://github.com/BUStools/BUSpaRse/issues
URL: https://github.com/BUStools/BUSpaRse
Imports:
AnnotationDbi,
AnnotationFilter,
biomaRt,
BiocGenerics,
Biostrings,
BSgenome,
dplyr,
ensembldb,
GenomeInfoDb,
GenomicFeatures,
GenomicRanges,
ggplot2,
IRanges,
magrittr,
Matrix,
methods,
plyranges,
Rcpp,
S4Vectors,
stats,
stringr,
tibble,
tidyr,
utils,
zeallot
LinkingTo: Rcpp, RcppArmadillo, RcppProgress, BH
RoxygenNote: 7.1.1
Roxygen: list(markdown = TRUE)
Suggests:
knitr,
rmarkdown,
testthat,
BiocStyle,
txdbmaker,
TENxBUSData,
TxDb.Hsapiens.UCSC.hg38.knownGene,
txdbmaker,
BSgenome.Hsapiens.UCSC.hg38,
EnsDb.Hsapiens.v86
VignetteBuilder: knitr
LazyData: TRUE
Collate:
'RcppExports.R'
'annots_from_fa.R'
'biotypes.R'
'get_tx.R'
'knee_plot.R'
'sparse_matrix.R'
'tr2g.R'
'utils.R'
'velocity.R'
'velocity_methods.R'
Encoding: UTF-8
License: BSD_2_clause + file LICENSE
biocViews:
SingleCell,
RNASeq,
WorkflowStep
SystemRequirements: GNU make
Depends:
R (>= 3.6)