Skip to content

Commit

Permalink
first draft of about tab #113
Browse files Browse the repository at this point in the history
  • Loading branch information
werpuc committed May 30, 2022
1 parent ce9bc35 commit ba696a9
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
18 changes: 18 additions & 0 deletions inst/HaDeX/readmes/resources.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## Resources

If you are interested to dig more into the world of HDX-MS, please see the following:

### List of resources

Manually curated lists of software, publications and other resources related to the analysis of HDX-MS data. It is community-maintained and new items are added when noticed. It is a valuable resorce to explore HDX-MS and what is done by the scientists from different labs.

List can be found [here](https://github.com/hadexversum/HDX-MS-resources).

Feel free to fork the repository and add things you found valuable that are missing from the list.

### powerHaDeX

The R-packages that allows super-fast isotopic envelopes simulations based on the [algorithm by Zhong-Yuan Kan](https://github.com/kanzy/HX-MS-Simulations) due to the usage of Markov chains. The functionalities of the package are will be available soon in a form of a GUI.

Repository is available [here](https://github.com/hadexversum/powerHaDeX).

1 change: 1 addition & 0 deletions inst/HaDeX/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ ui <- tagList(
),
tab_summary(),
tab_report(),
tab_about(),

theme = "HaDeX_theme.css",
header = img(id = "HaDeX-logo", src = "logo.png")
Expand Down
21 changes: 21 additions & 0 deletions inst/HaDeX/ui/ui_tab_about.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
tab_about <- function() HaDeX_nonplotTab(

title = "About",

fluidPage(
fluidRow(
column(
width = 5,
includeMarkdown("readmes/about.md")
),
column(
width = 6,
includeMarkdown("readmes/resources.md")
)
)
)




)

0 comments on commit ba696a9

Please sign in to comment.