diff --git a/NAMESPACE b/NAMESPACE
index c0670bb09c31531ff07a2eb702e4c5b4905959f7..43fb427b176f39049f5ec4ec3086679292af0351 100644
--- a/NAMESPACE
+++ b/NAMESPACE
@@ -14,5 +14,6 @@ export(prescreen)
 export(run)
 export(run_in_dir)
 export(sort_spectra)
+export(subset_summary)
 import(data.table)
 importFrom(shiny,validate)
diff --git a/man/sort_spectra.Rd b/man/sort_spectra.Rd
new file mode 100644
index 0000000000000000000000000000000000000000..49954c4ac3954785862b6844d18aece0bd8095cf
--- /dev/null
+++ b/man/sort_spectra.Rd
@@ -0,0 +1,25 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/api.R
+\name{sort_spectra}
+\alias{sort_spectra}
+\title{Sort the Summary Table}
+\usage{
+sort_spectra(m)
+}
+\arguments{
+\item{m}{}
+}
+\value{
+m
+}
+\description{
+Sets the key specified by DEF_KEY_SUMM and adds second indices,
+either from DEF_INDEX_SUMM, or user-specified in
+conf[\link{"summary table"}]$order. The order entry is a list of
+strings with names of columns in summ, optionally prefixed with a
+minus(-) sign. Columns prefixed with the minus are going to be in
+ascending order.
+}
+\author{
+Todor Kondić
+}
diff --git a/man/subset_summary.Rd b/man/subset_summary.Rd
new file mode 100644
index 0000000000000000000000000000000000000000..45deb6e014a31c3a9dd969d36e3c56cfec1f9f41
--- /dev/null
+++ b/man/subset_summary.Rd
@@ -0,0 +1,23 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/api.R
+\name{subset_summary}
+\alias{subset_summary}
+\title{Subset the Summary Table}
+\usage{
+subset_summary(m)
+}
+\arguments{
+\item{m}{}
+}
+\value{
+m
+}
+\description{
+Subsets the summary table by applying conditions set out in the
+filter subkey of summary table key of the config. Each member of
+filter is an expression that and all of them are chained together
+using AND logical operation and applied to the summary table.
+}
+\author{
+Todor Kondić
+}