Skip to content

Commit

Permalink
Update to v1.2.0
Browse files Browse the repository at this point in the history
Add static plots. Allow user-specified normalization. Add abundances export table to normalization tab. Update documentation.
  • Loading branch information
ejmackrell committed Jan 31, 2024
1 parent 4f5973e commit 7055381
Show file tree
Hide file tree
Showing 23 changed files with 451 additions and 148 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,6 @@ You can also run and modify the application in RStudio by following the instruct
## Citation
If you use this application for your research, please cite our article. \> Jones, J., MacKrell, E.J., Wang, TY. *et al*. Tidyproteomics: an open-source R package and data object for quantitative proteomics post analysis and visualization. *BMC Bioinformatics* **24**, 239 (2023).
If you use this application for your research, please cite our article.
> Jones, J., MacKrell, E.J., Wang, TY. *et al*. Tidyproteomics: an open-source R package and data object for quantitative proteomics post analysis and visualization. *BMC Bioinformatics* **24**, 239 (2023).
5 changes: 3 additions & 2 deletions app/modules/tab_enrichment_analysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ tab_enrichment_analysis_server <- function(id, tp, tp_expression, tp_enrichment)
searchable = TRUE,
defaultColDef = colDef(
cell = render_enrichment_reactable,
sortNALast = TRUE
sortNALast = TRUE,
headerStyle = list(background = "#FAFAFA")
),
columns = list(
annotation = colDef(
Expand All @@ -257,7 +258,7 @@ tab_enrichment_analysis_server <- function(id, tp, tp_expression, tp_enrichment)
resizable = TRUE,
defaultColDef = colDef(
cell = render_expression_reactable,
headerStyle = list(background = "#f7f7f8")
headerStyle = list(background = "#FAFAFA")
)
),
br()
Expand Down
Loading

0 comments on commit 7055381

Please sign in to comment.