forked from earnaud/MetaShARK-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
57 changed files
with
4,277 additions
and
3,366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,73 @@ | ||
#' @import shiny | ||
#' | ||
#' @noRd | ||
aboutUI <- function(id) { | ||
ns <- NS(id) | ||
|
||
fluidPage( | ||
tags$h1("About MetaShARK dev team"), | ||
HTML("MetaShARK is developped within the french Museum National | ||
d'Histoire Naturelle / UMS Patrimoine Naturel / Pole | ||
National de Biodiversite. Its development team is currently | ||
composed of <a href='https://fr.linkedin.com/in/elie-arnaud-440132151?trk=people-guest_profile-result-card_result-card_full-click'>Elie Arnaud</a> | ||
(lead developer) and <a href ='https://fr.linkedin.com/in/yvan-le-bras-aa2b3738?trk=people-guest_profile-result-card_result-card_full-click'>Yvan Le Bras</a> (team director)."), | ||
|
||
tags$h1("Thanks"), | ||
HTML("MetaShARK could not be built without the help of those people: </br> | ||
<ul> | ||
<li>Colin Smith (EDI, US)</li> who collaborates with us since March | ||
2019, and currently provides us the <a href='https://github.com/EDIorg/EMLassemblyline'>EML Assembly Line</a> tool. | ||
</ul>"), | ||
|
||
tags$h1("References"), | ||
# Parties | ||
tags$h2("LTER and EML Actors"), | ||
tags$p("The following people and parties have worked upstream of | ||
MetaShARK dev team to provide the fundamentals united in | ||
the present tool."), | ||
uiOutput(NS(id, "actors")), | ||
# Informatics | ||
tags$h2("Computer material"), | ||
tags$p("The following references will lead the user to the source | ||
of tools and methods reused in MetaShARK."), | ||
uiOutput(NS(id, "informatics")), | ||
# Sci litt | ||
tags$h2("Literature"), | ||
tags$p("MetaShARK is based on the following papers and articles | ||
concerning mainly ecological metadata."), | ||
uiOutput(NS(id, "ecology")) | ||
) | ||
} | ||
|
||
#' @title about | ||
#' | ||
#' @description server part of the about module. | ||
#' | ||
#' | ||
#' @import shiny | ||
#' | ||
#' | ||
#' @noRd | ||
about <- function(input, output, session) { | ||
ns <- session$ns | ||
about <- function(id) { | ||
moduleServer(id, function(input, output, session) { | ||
|
||
.bibliography <- reactiveValues( | ||
actors = system.file("resources/bibliography-actors.bib", package = "MetaShARK"), | ||
informatics = system.file("resources/bibliography-informatics.bib", package = "MetaShARK"), | ||
ecology = system.file("resources/bibliography-ecology.bib", package = "MetaShARK"), | ||
misc = system.file("resources/bibliography-misc.bib", package = "MetaShARK") | ||
) | ||
# misc = system.file("resources/bibliography-misc.bib", package = "MetaShARK") | ||
|
||
# use function | ||
output$actors <- renderBibliography(.bibliography$actors) | ||
output$informatics <- renderBibliography(.bibliography$informatics) | ||
output$ecology <- renderBibliography(.bibliography$ecology) | ||
output$actors <- renderBibliography( | ||
system.file( | ||
"resources/bibliography-actors.bib", | ||
package = "MetaShARK" | ||
) | ||
) | ||
output$informatics <- renderBibliography( | ||
system.file( | ||
"resources/bibliography-informatics.bib", | ||
package = "MetaShARK" | ||
) | ||
) | ||
output$ecology <- renderBibliography( | ||
system.file( | ||
"resources/bibliography-ecology.bib", | ||
package = "MetaShARK" | ||
) | ||
) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.