Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: R CMD check
'on':
workflow_dispatch:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * MON'
jobs:
R-CMD-check:
runs-on: ubuntu-latest
steps:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libjpeg-dev \
libpng-dev
- uses: r-lib/actions/setup-tinytex@v2
- uses: uclahs-cds/tool-R-CMD-check-action@v2
16 changes: 0 additions & 16 deletions .github/workflows/r-lib-check.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: CancerEvolutionVisualization
Title: Publication Quality Phylogenetic Tree Plots
Version: 3.0.0
Date: 2025-04-09
Date: 2025-06-13
Authors@R: c(
person("Paul Boutros", role = "cre", email = "PBoutros@mednet.ucla.edu"),
person("Adriana Salcedo", role = "aut"),
Expand All @@ -24,6 +24,7 @@ Imports:
BoutrosLab.plotting.general
Suggests:
testthat,
rmarkdown,
knitr
VignetteBuilder: knitr
LazyLoad: yes
Expand Down
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CancerEvolutionVisualization 3.0.0 (2025-04-09)
# CancerEvolutionVisualization 3.0.0 (2025-06-13)

## Added
* Dendrogram mode
Expand All @@ -17,6 +17,7 @@
* Add support for 1xn and 1x1 heatmaps.
* Add `get.colours.in.order` function to get a list of colours and corresponding clone ID order.
* Add `sample.order` and `clone.order` as input parameters to `create.cluster.heatmap`
* Suggest rmarkdown dependency for rendering vignettes

## Update
* Fixed angle calculation bug where child angles do not follow
Expand All @@ -33,6 +34,7 @@
* Updated the user guide to reflect new features.
* Fix bug where the x-axis only renders when y-axis is also rendered.
* Fix issue when creating polygons with more than 2 siblings
* Use updated `R CMD check` CI/CD action

## Bug
* Resolved issue where the spread parameter was not applied in dendrogram mode.
Expand Down
Loading