Skip to content

Commit

Permalink
fix error in number of panels
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnn-airr committed Apr 29, 2024
1 parent 7c8bf58 commit b8750f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: repcred
Type: Package
Version: 0.0.1
Date: 2024-04-17
Date: 2024-04-29
Authors@R: c(person("Susanna", "Marquez", role=c("aut", "cre"),
email="[email protected]"),
person("AIRR Community", role=c("cph")))
Expand Down
6 changes: 3 additions & 3 deletions inst/rstudio/templates/project/project_files/index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ knitr::kable(length_info)
# Annotation Calls Statistics


```{r calls info}
```{r calls_info}
v_usage_info <- getGeneAlleleStat(repertoire, reference = germline_reference, call = "v_call")
d_usage_info <- data.frame()
if (any(!is.na(repertoire[["d_call"]]))) {
Expand Down Expand Up @@ -324,7 +324,7 @@ ggplot2::ggplot(appearance_info,
#ggplot2::theme(axis.text.x = element_text(angle = 90, vjust = 0.5)) +
ggplot2::labs(x = "", y = "# of unique alleles") +
ggplot2::facet_wrap(vars(!! sym("segment")), nrow = 1,
ncol = 3,
ncol = length(unique(appearance_info[["segment"]])),
scales = "free") + ggplot2::coord_flip()
```
Expand All @@ -346,7 +346,7 @@ ggplot2::ggplot(usage_info,
#ggplot2::theme(axis.text.x = element_text(angle = 90, vjust = 0.5)) +
ggplot2::labs(x = "", y = "Relative usage") +
ggplot2::facet_wrap(vars(!! sym("segment")), nrow = 1,
ncol = 3,
ncol = length(unique(usage_info[["segment"]])),
scales = "free") + ggplot2::coord_flip()
```
Expand Down

0 comments on commit b8750f9

Please sign in to comment.