-
Notifications
You must be signed in to change notification settings - Fork 23
/
DESCRIPTION
52 lines (52 loc) · 1.47 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
Package: fastqcr
Type: Package
Title: Quality Control of Sequencing Data
Version: 0.1.3.999
Date: 2023-02-18
Authors@R: c(
person("Alboukadel", "Kassambara", role = c("aut", "cre"), email = "alboukadel.kassambara@gmail.com")
)
Description: 'FASTQC' is the most widely used tool for evaluating the quality of high throughput sequencing data.
It produces, for each sample, an html report and a compressed file containing the raw data.
If you have hundreds of samples, you are not going to open up each 'HTML' page.
You need some way of looking at these data in aggregate.
'fastqcr' Provides helper functions to easily parse, aggregate and analyze
'FastQC' reports for large numbers of samples. It provides a convenient solution for building
a 'Multi-QC' report, as well as, a 'one-sample' report with result interpretations.
License: GPL-2
Encoding: UTF-8
Depends:
R (>= 3.1.2)
Imports:
dplyr,
grid,
gridExtra,
ggplot2,
magrittr,
readr (>= 1.3.0),
rmarkdown (>= 1.4),
rvest,
tibble,
tidyr,
scales,
stats,
utils,
xml2,
rlang
Suggests:
knitr
URL: https://rpkgs.datanovia.com/fastqcr/index.html
BugReports: https://github.com/kassambara/fastqcr/issues
RoxygenNote: 7.2.3
Collate:
'utilities.R'
'fastqc.R'
'fastqc_install.R'
'qc_aggregate.R'
'qc_plot.R'
'qc_plot_collection.R'
'qc_problems.R'
'qc_read.R'
'qc_read_collection.R'
'qc_report.R'
'qc_unzip.R'