Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of User-Friendly functions. #6

Merged
merged 13 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ Package: r3dmol
Title: Create Interactive 3D Visualizations of Molecular Data
Version: 0.1.0
Authors@R:
person(given = "Wei",
c(person(given = "Wei",
family = "Su",
role = c("aut", "cre"),
email = "swsoyee@gmail.com")
email = "swsoyee@gmail.com"),
person(given = "Brady",
family = "Johnston",
role = "aut",
email = "brady.johnston@me.com"))
Maintainer: Wei Su <swsoyee@gmail.com>
Description: Create rich and fully interactive 3D visualizations of molecular data.
Visualizations can be included in Shiny apps and R markdown documents, or viewed
Expand All @@ -20,7 +24,8 @@ RoxygenNote: 7.1.1
Imports:
htmlwidgets,
magrittr,
methods
methods,
bio3d
Suggests:
knitr,
rmarkdown,
Expand Down
12 changes: 12 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export(m_add_line)
export(m_add_model)
export(m_add_models)
export(m_add_models_as_frames)
export(m_add_outline)
export(m_add_property_labels)
export(m_add_res_labels)
export(m_add_shape)
Expand All @@ -21,10 +22,12 @@ export(m_add_style)
export(m_add_surface)
export(m_add_unit_cell)
export(m_animate)
export(m_bio3d)
export(m_center)
export(m_clear)
export(m_create_model_from)
export(m_enable_fog)
export(m_fetch_pdb)
export(m_get_model)
export(m_is_animated)
export(m_remove_all_labels)
Expand All @@ -36,6 +39,7 @@ export(m_remove_unit_cell)
export(m_render)
export(m_replicate_unit_cell)
export(m_rotate)
export(m_sel)
export(m_set_background_color)
export(m_set_color_by_element)
export(m_set_default_cartoon_quality)
Expand All @@ -49,13 +53,21 @@ export(m_set_view)
export(m_set_view_style)
export(m_set_width)
export(m_set_zoom_limits)
export(m_shape_spec)
export(m_shiny_demo)
export(m_spin)
export(m_stop_animate)
export(m_style_cartoon)
export(m_style_label)
export(m_style_line)
export(m_style_sphere)
export(m_style_stick)
export(m_style_surface)
export(m_translate)
export(m_translate_scene)
export(m_vector3)
export(m_vibrate)
export(m_viewer_spec)
export(m_zoom)
export(m_zoom_to)
export(r3dmol)
Expand Down
Loading