Skip to content

Commit

Permalink
Further fix to vignette generation
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdlees committed Nov 1, 2024
1 parent 4b89198 commit 2a60ec0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ Imports:
Suggests:
knitr,
rmarkdown
VignetteBuilder: rmarkdown
VignetteBuilder: knitr
RoxygenNote: 7.2.3
LazyData: true
11 changes: 4 additions & 7 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@

# ogrdbstats 0.5.1

* Fixed a problem which prevented haplotyping plots from being produced.
* Fixed various issues with report formatting

* Added support for recent versions of IgDiscover, which now uses a AIRR format for filtered.tsv
* Added automatic sequence gapping for the AIRR format column sequence_alignment, should it not be gapped (this was required for IgDIscover support)
* Fixed the creation of output files where the input file included more than one period in its name
* Added support for recent versions of IgDiscover, which now uses AIRR format for filtered.tsv.
* The AIRR format sequence column may now be supplied ungapped, in which case ogrdbstats will gap the sequences before use.
* Output files will be named correctly even if the input file includes more than one period in its name.

# ogrdbstats 0.5.2

* Fixed an error in the CRAN package checks: `grobs` must be a single grob or a list of grobs, not a list.
* Changed the Vignette builder from knitr to rmarkdown to avoid an error during package creation.
2 changes: 1 addition & 1 deletion vignettes/using_ogrdbstats.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ rd = suppressMessages(
barplot_grobs = make_barplot_grobs(rd$input_sequences, rd$genotype_db, rd$inferred_seqs,
rd$genotype, 'V', rd$calculated_NC)
base_grobs = make_novel_base_grobs(rd$inferred_seqs, rd$input_sequences, 'V', FALSE)
gridExtra::grid.arrange(grobs=list(barplot_grobs[3][[1]], base_grobs$end[1][[1]],
gridExtra::grid.arrange(grobs=list(barplot_grobs[2][[1]], base_grobs$end[1][[1]],
base_grobs$conc[1][[1]]),ncol=1)
Expand Down

0 comments on commit 2a60ec0

Please sign in to comment.