Skip to content

Commit d8392ca

Browse files
committed
add citation
1 parent 48a7e48 commit d8392ca

File tree

7 files changed

+915
-19
lines changed

7 files changed

+915
-19
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ documents/MPTevol_cache
1313
documents/rsconnect
1414
documents/MPTevol_files
1515
documents/MPTevol.html
16-
vignettes
1716
Test.R

README.Rmd

+7-5
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,19 @@ knitr::opts_chunk$set(
1818
<!-- badges: start -->
1919
<!-- badges: end -->
2020

21-
The goal of MPTevol is to provide a practical computation framework for dissecting the
22-
evolution of multiple primary tumors (MPT), reducing analysis
23-
complexity with modular design.
21+
Multiple primary tumors (MPT) is a special and rare cancer type, defined as more than two primary tumors presenting at the diagnosis in a single patient. The molecular characteristics and tumorigenesis of MPT remain unclear due to insufficient approaches.
22+
23+
Here, we present `MPTevol`, a practical computational framework for comprehensively exploring the MPT from **multiregional sequencing (MRS)** experiments. `MPTevol` facilitates comparison genomic profiles across multiple primary tumor samples, detection of clonal evolutionary history and metastatic routines in MPT, and quantification of metastatic history. This package incorporates multiple cancer evolution analyses, for a one-stop solution of MPT analysis.The goal of MPTevol is to provide a practical computation framework for dissecting the evolution of multiple primary tumors (MPT), reducing analysis complexity with modular design.
2424

25-
**Package Overview**:
25+
## Package Overview
2626

2727
![](man/figures/MPTevol.jpg)
2828

29+
## Citations
30+
2931
If you are using the MPTevol in academic research, please cite our paper:
3032

31-
***Deciphering clonal dynamics and metastatic routines in a rare patient of synchronous triple primary tumors and multiple metastases with MPTevol.***
33+
**Chen, Q., Wu, Q.-N., Rong, Y.-M., Wang, S., Zuo, Z., Bai, L., . . . Zhao, Q. (2022). Deciphering clonal dynamics and metastatic routines in a rare patient of synchronous triple-primary tumors and multiple metastases with MPTevol. Briefings in Bioinformatics. doi:10.1093/bib/bbac175**
3234

3335
## Installation
3436

README.md

+24-8
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,36 @@
66
<!-- badges: start -->
77
<!-- badges: end -->
88

9-
The goal of MPTevol is to provide a practical computation framework for
10-
dissecting the evolution of multiple primary tumors (MPT), reducing
11-
analysis complexity with modular design.
12-
13-
**Package Overview**:
9+
Multiple primary tumors (MPT) is a special and rare cancer type, defined
10+
as more than two primary tumors presenting at the diagnosis in a single
11+
patient. The molecular characteristics and tumorigenesis of MPT remain
12+
unclear due to insufficient approaches.
13+
14+
Here, we present `MPTevol`, a practical computational framework for
15+
comprehensively exploring the MPT from **multiregional sequencing
16+
(MRS)** experiments. `MPTevol` facilitates comparison genomic profiles
17+
across multiple primary tumor samples, detection of clonal evolutionary
18+
history and metastatic routines in MPT, and quantification of metastatic
19+
history. This package incorporates multiple cancer evolution analyses,
20+
for a one-stop solution of MPT analysis.The goal of MPTevol is to
21+
provide a practical computation framework for dissecting the evolution
22+
of multiple primary tumors (MPT), reducing analysis complexity with
23+
modular design.
24+
25+
## Package Overview
1426

1527
![](man/figures/MPTevol.jpg)
1628

29+
## Citations
30+
1731
If you are using the MPTevol in academic research, please cite our
1832
paper:
1933

20-
***Deciphering clonal dynamics and metastatic routines in a rare patient
21-
of synchronous triple primary tumors and multiple metastases with
22-
MPTevol.***
34+
**Chen, Q., Wu, Q.-N., Rong, Y.-M., Wang, S., Zuo, Z., Bai, L., . . .
35+
Zhao, Q. (2022). Deciphering clonal dynamics and metastatic routines in
36+
a rare patient of synchronous triple-primary tumors and multiple
37+
metastases with MPTevol. Briefings in Bioinformatics.
38+
<doi:10.1093/bib/bbac175>**
2339

2440
## Installation
2541

Test.R

-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ use_gpl_license(version = 3, include_future = TRUE)
55

66
library(usethis)
77

8-
9-
add_
10-
118
#add packages.
129
use_package("tidyverse", type = "depends")
1310

documents/MPTevol.Rmd

+4-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ remotes::install_github("qingjian1991/MPTevol")
106106

107107
If you are using `MPTevol` in academic research, please cite the following paper:
108108

109-
***Deciphering clonal dynamics and metastatic routines in a rare patient of synchronous triple primary tumors and multiple metastases with MPTevol***
109+
***Chen, Q., Wu, Q.-N., Rong, Y.-M., Wang, S., Zuo, Z., Bai, L., . . . Zhao, Q. (2022). Deciphering clonal dynamics and metastatic routines in a rare patient of synchronous triple-primary tumors and multiple metastases with MPTevol. Briefings in Bioinformatics. doi:10.1093/bib/bbac175***
110110

111111

112112
## 2. Input data format
@@ -434,7 +434,9 @@ On the other hand,selective pressure can be estimated simply by the ratio of dri
434434

435435
```{r message=FALSE, eval=TRUE}
436436
prop <- calPropDriver(maf, patient.id = "BRCA", class = "SP", driverGene = driverGene)
437-
kaks$BRCA$plot + ggpubr::theme_pubr()
437+
cowplot::plot_grid(kaks$BRCA$plot + ggpubr::theme_pubr(),
438+
prop$BRCA$plot + ggpubr::theme_pubr()
439+
)
438440
```
439441

440442
The mutations in `BRCA` were divided into `Public`(shared by all sampling site), `Shared`(shared by two or more samples but not all sampling site), and `Private`(Private in one sampling site). The `Public` mutations were under positive selection (`Dn/Ds >=1` and `The prop of driver mutations is high` ), coherent with the expectation that the ancestral mutations might contribute to cancer development.

vignettes/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.html
2+
*.R
3+
rsconnect
4+
MPTevol_cache

0 commit comments

Comments
 (0)