Metadata Shiny Automated Resource and Knowledge, see git earnaud/MetaShARK-v2.
5.1K
Stable Server address:
http://metashark.pndb.fr/
Maintenance
Stable Test Server address:
https://metashark.test.pndb.fr/ Active
Metadata Shiny-Automated Resources & Knowledge First released on 15-04-2019
The aim of the MetaShARK app is to allow any user a bit familiar with ecology to fill in data packages to provide as many information as possible on any dataset used in a publication, communication, etc. in ecology. The challenge of this work is to produce a user-friendly tool to a science community which is not familiar to heavy metadata standards and their informatic specification. Consequently, the choice has been made to work only with R as it is the currentest programming language in this community and it can be easily accessible as an open source application, despite of its low performances.
This project has the ambition to offer the user a user-friendly alternative to existing tools (such as the hardcore Morpho ;) ) but also to address an other issue which is the EML is not always fully considered.
This MetaShARK git is called "v2" because it is the evolution with {golem} package of the previous MetaShARK git
MetaShARK has a dedicated dockerhub and its deployment method is also accessible. You can also deploy MetaShARK in a local version: for this, check the local installation section.
By using MetaShARK on a machine, you can get to make the app write files on your machine (see local installation and docker items for more details). It is discouraged to launch MetaShARK outside of a docker container.
Any suggestion is welcome, feel free to contact the dev !
All instructed install solutions use Docker method. It is therefore required to install this software.
If this is "easy" on linux, for Windows 10 user, the easiest way is to install first Docker Desktop for windows from this url https://hub.docker.com/editions/community/docker-ce-desktop-windows This will install a linux kernel on your windows so you can use a shell, like PowerShell, to run linux command lines. Once "docker Desktop" is installed, you have to run it so Docker is activated, then you can run Docker command on PowerShell.
It is now possible to deploy a local container for MetaShARK.
Two possibilities :
Typing this command line on a shell :
On linux computer:
docker run -d --rm -p 3838:3838 --name MS -v ~/metashark_data:/root/dataPackagesOutput eliearnaud/metashark
On windows computer (using Powershell on Windows 10 for example and if you are in a folder where there is or you accept the creation of a metashark_data folder):
docker run -d --rm -p 3838:3838 --name MS -v ${PWD}\metashark_data:/root/dataPackagesOutput eliearnaud/metashark
By downloading the git in locale following the described steps. Please refer to the reload_docker.sh script to get all necessary command lines.
Disclaimer: you can use docker volumes to access files outside of the container (steps 3 & 4a), but this will require to write files to your computer. Since you execute by yourself the given command lines, we consider this as a consent from the user.
# in the root of the package git
> devtools::build(path=".")
You shall get a file like MetaShARK_0.0.0.9000.tar.gz.
In a command shell, get to this git's root: cd <path/to/MetaShARK/git>.
If you want to use volumes (which will let you access files outside of the container, with admin rights), make sure to have a directory in which you can access the data. Here, we will use:
mkdir ~/metashark_data
docker build -t metashark:local .
docker run -d --rm -p 3838:3838 --name MS -v ~/metashark_data:/root/dataPackagesOutput metashark:local
b. If you do not use volumes:
docker build -t metashark:local .
docker run -d --rm -p 3838:3838 --name MS metashark:local
127.0.0.1:3838.A dedicated git shows the step for setting up an online instance of MetaShARK. Online version of MetaShARK can be subject to some misfunctions due to incorrect handling of simultaneous multiple users (see issue #124).
First feature developped in MetaShARK, it is possible to consult any documented part of the Ecological Metadata Language. This documentation directly relies on the EML 2.2.0, and some tags (as the "eml-*" ones) can be undocumented. Also, it is possible to access the original documentation through the dedicated tab.
Two methods are being developped to fill in metadata:
It is possibe to upload data packages to metacats registered in MetaShARK. You will need to fetch your metacat token in the corresponding MetaCatUI. During development phase, this might not be fully operable as we are trying to properly set our MetaCat and MetaShARK linked together.
Some references are given that sustain the base principles of this work.
MetaShARK/EAL supports:
* automation still requires user's verification ** see Known Bugs below
Any contribution can be done and submitted. Care about documenting code chunks you want to edit, and also add motivations about these changes.
On posting issues, make sure your problem/idea has not been discussed before (beware of the "is closed" filter). Some issues are named with a "[XXX]" tag meaning this issue is a topic dedicated to "XXX": such issues are not meant to be closed before a long time.
Content type
Image
Digest
sha256:dacb63f2c…
Size
1.3 GB
Last updated
about 4 years ago
docker pull eliearnaud/metashark