-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eLabFTW file source from file source templates
Support user-defined file sources based on `eLabFTWFilesSource`. Add a file source template for eLabFTW and the required documentation.
- Loading branch information
Showing
11 changed files
with
136 additions
and
26 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
26 changes: 26 additions & 0 deletions
26
lib/galaxy/files/templates/examples/production_elabftw.yaml
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
- id: elabftw | ||
version: 0 | ||
name: eLabFTW | ||
description: | | ||
eLabFTW is a free and open source electronic lab notebook from Deltablot. It can keep track of experiments, | ||
equipment, and materials from a research lab. Each lab can either host their own installation or go for Deltablot's | ||
hosted solution. This template configuration allows you to connect to an eLabFTW instance of your choice. | ||
variables: | ||
endpoint: | ||
label: eLabFTW instance endpoint (e.g. https://demo.elabftw.net) | ||
type: string | ||
help: | | ||
The endpoint of the eLabFTW server you are connecting to. This should be the full URL including the protocol | ||
(http or https) and the domain name. | ||
secrets: | ||
api_key: | ||
label: API Key | ||
help: | | ||
The API key to use to connect to the eLabFTW server. Navigate to the _Settings_ page on your eLabFTW server and | ||
go to the _API Keys_ tab to generate a new key. Choose "Read/Write" permissions to enable both importing and | ||
exporting data. "Read Only" API keys still work for importing data to Galaxy, but they will cause Galaxy to | ||
error out when exporting data to eLabFTW. | ||
configuration: | ||
type: elabftw | ||
endpoint: "{{ variables.endpoint }}" | ||
api_key: "{{ secrets.api_key }}" |
Oops, something went wrong.