diff --git a/DESCRIPTION b/DESCRIPTION index 050f1ab..8065881 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: phenoptrReports Title: Create reports using Phenoptics data -Version: 0.1.3.9000 +Version: 0.1.4 Date: 2018-11-05 Authors@R: c( person("Kent S", "Johnson", role = c("aut", "cre"), @@ -39,7 +39,7 @@ Remotes: akoyabio/phenoptr, hms-dbmi/UpSetR Roxygen: list(markdown = TRUE) -RoxygenNote: 6.1.0 +RoxygenNote: 6.1.1 Suggests: ggridges, testthat diff --git a/NEWS.md b/NEWS.md index b448522..6be118c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,11 @@ -# phenoptrReports 0.1.3.9000 +# phenoptrReports 0.1.4 +**2018-12-04** +New features: +- Component levels report shows signal levels of bright and dark pixels + in multiplex images. + +Misc: - Unmixing quality report works when DAPI and AF components are not present. - `consolidate_and_summarize_cell_seg_data` processes files pairwise for reduced memory requirements. diff --git a/_pkgdown.yml b/_pkgdown.yml index 432aca3..69d289d 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -12,12 +12,12 @@ navbar: href: index.html - text: "Tutorials" menu: - - text: "Unmixing quality report" - href: articles/unmixing_quality_report.html - text: "Consolidating inForm data" href: articles/consolidation.html - text: "Analyzing inForm data" href: articles/analysis.html + - text: "Unmixing quality report" + href: articles/unmixing_quality_report.html - text: "Reference" href: reference/index.html right: diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 9bcd8ce..edd09fb 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -8,20 +8,18 @@
vignettes/analysis.Rmd
analysis.Rmd
vignettes/consolidation.Rmd
consolidation.Rmd
vignettes/unmixing_quality_report.Rmd
unmixing_quality_report.Rmd
The unmixing quality report analyzes unmixed, singleplex images to help evaluate staining and unmixing quality. This report shows crosstalk between components and highlights potential problem areas in assay development.
+The component levels report analyzes unmixed, multiplex images to help evaluate staining levels for an entire experiment. This report shows the distribution of signal and dark pixels for all components.
phenoptrReports
is part of the Akoya Biosciences Phenoptics™ family of Quantitative Pathology Research Solutions. For more information visit the Phenoptics™ home page.
addin_10_merge
opens a GUI that allows you to select a directory containing
+cell seg data files from multiple, individual fields. The selected files
+will be merged
+to a single file which is saved to the source directory.
+This is similar to the function of the inForm Merge tab but
+does not include the ability to review and reject individual fields.
addin_10_merge()
+
+
+ R/consolidate_gadget_addin.R
+ addin_20_consolidate.Rd
addin_20_consolidate
opens a GUI that allows you to select multiple
+cell seg data files. The selected files will be consolidated
+to a single file which is saved to an output directory
+along with summary reports for each file.
addin_20_consolidate()
+
+
+ Runs a Shiny app which will read a consolidated data file and +create aggregated statistics from it.
+ +addin_30_analysis_app()
+
+
+ R/unmixing_quality_addin.R
+ addin_40_unmixing_quality.Rd
addin_40_unmixing_quality
opens a GUI that allows you to select
+an export folder containing component data files for singleplex samples.
+An unmixing quality report is created for the samples and saved in
+the source directory.
addin_40_unmixing_quality()
+
+ The report generator tries to identify the Opal fluor for each source file +by looking at the file name. It recognizes "DAPI", "AF", "Opalnnn", +and "Opal_nnn". +It also recognizes three leading digits as the number of an Opal fluor.
+ + +R/component_levels_addin.R
+ addin_50_component_levels.Rd
addin_50_component_levels
opens a GUI that allows you to select
+an export folder containing component data files for multiplex samples.
+A component levels report is created for the samples and saved in
+the export directory.
addin_50_component_levels()
+
+
+ R/reports.R
+ component_levels_report.Rd
export_path
should be the path to
+an export folder containing component data files for multiplex samples.
+A component levels report is created for the samples and saved in
+the source directory.
component_levels_report(export_path = NULL)+ +
export_path | +Path to a directory containing component_data files. |
+
---|
R/utilities.R
+ validate_phenotype_definitions.Rd
Check that a user-specified phenotype definition +can be formed from available phenotypes.
+ +validate_phenotype_definitions(pheno, available)+ +
pheno | +Text destription of a phenotype,
+for |
+
---|---|
available | +A character vector of available phenotypes |
+
An error message or empty string
+ + +