Skip to contents

This function creates a shiny application to manage and visualize pedigree data using the ped_ui() and ped_server() functions.

Usage

ped_shiny(
  port = getOption("shiny.port"),
  host = getOption("shiny.host", "127.0.0.1"),
  precision = 2
)

Arguments

port

(optional) Specify port the application should list to.

host

(optional) The IPv4 address that the application should listen on.

precision

Number of decimal for the position of the boxes in the plot.

Value

Running Shiny Application

Details

The application is composed of several modules:

  • Data import

  • Data column selection

  • Data download

  • Family selection

  • Health selection

  • Informative selection

  • Subfamily selection

  • Plotting pedigree

  • Family information

Examples

if (interactive()) {
    ped_shiny()
}