Skip to content

Commit

Permalink
Update qc.R
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Hoffmann authored Oct 31, 2024
1 parent 25d3141 commit f83068a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions bin/qc.R
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@ theme_set(
#############################################################################
# CLI Args
#############################################################################
args <- commandArgs(trailingOnly = TRUE)
prefix <- args[1]
ANNEXA_version <- args[2]
args = commandArgs(trailingOnly=TRUE)
prefix = args[1]
ANNEXA_version = args[2]
genome_ref = basename(args[3])
gtf_ref = basename(args[4])

#############################################################################
# GENE level
Expand Down Expand Up @@ -395,7 +397,7 @@ pdf(paste0(prefix, ".annexa.qc.pdf"), width = 7, height = 7)
cover <- textGrob("ANNEXA report",
gp = gpar(fontsize = 40,
col = "black"))

sub_cover_text <- paste(
str_wrap(paste("Reference genome:", genome_ref), width = 40),
str_wrap(paste("Reference annotation:", gtf_ref), width = 40),
Expand Down

0 comments on commit f83068a

Please sign in to comment.