-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ENA upload tool to latest version (#5472)
* Update ena_upload.xml * Update README.md * fix linting + no nonviral * viral only * better cleanup * update doc * rst instead of md * fixed tests * match number of outputs * add more options * update tests * update templates + refactor * fix linting * header collection date * fix tests * add extra matching line * replace line * Bring back non viral interactive submissions * fix tests * update missing attributes * fix linting * fix indentation * attempt in fixing the tests * new way of versioning the tool * consistent use of True and False * fix values * attempt 1000 * add false * leave out unnecessary test * trigger fail * test assert_stderr * has_line * add full line * duplicate
- Loading branch information
Showing
17 changed files
with
317 additions
and
295 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
ENA-upload-cli wrapper | ||
====================== | ||
|
||
Galaxy wrapper of the | ||
`ena-upload-cli <https://github.com/usegalaxy-eu/ena-upload-cli>`__. | ||
Templates that can be used in as input for the metadata can be found | ||
`here <https://github.com/ELIXIR-Belgium/ENA-metadata-templates>`__ | ||
|
||
This tool is shipped in a ready to use Galaxy container found | ||
`here <https://github.com/ELIXIR-Belgium/ena-upload-container>`__. | ||
|
||
Setting up credentials on Galaxy | ||
-------------------------------- | ||
|
||
The admin of the server can set up global credentials through a file | ||
with the format: | ||
|
||
.. code-block:: yaml | ||
username: webin_id | ||
password: webin_password | ||
The path to this file must be exported as an environment variable called | ||
$GALAXY_ENA_SECRETS | ||
|
||
Alternatively, the admin can enable users to set their own credentials | ||
for this tool. To enable it, make sure the file | ||
``config/user_preferences_extra_conf.yml`` has the following section: | ||
|
||
.. code-block:: yaml | ||
ena_webin_account: | ||
description: Your ENA Webin account details | ||
inputs: | ||
- name: webin_id | ||
label: ENA Webin ID | ||
type: text | ||
required: False | ||
- name: password | ||
label: Password | ||
type: password | ||
required: False |
Large diffs are not rendered by default.
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.