-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GRT Update (Coordinates, Contacts & More Metadata) #2768
Closed
Closed
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
dc880fb
Implement location resolution
hexylena 480c749
Handle the completely default scenario better
hexylena 7663d87
Throw error if no api/id provided
hexylena 29dc3d5
Remove testing data
hexylena f565417
Also send galaxy version
hexylena c836787
Send URL too
hexylena 4ad4d6e
Stream the jobs rather than loading into memory
hexylena File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,7 +1,49 @@ | ||
--- | ||
galaxy_config: config/galaxy.ini | ||
#instance_id: blah | ||
#api_key: blah | ||
grt_url: https://radio-telescope.galaxyproject.org/api/v1/upload | ||
|
||
grt_server: | ||
## URL to your GRT server | ||
#grt_url: https://telescope.galaxyproject.org/api/v1/upload | ||
grt_url: http://localhost:8000/grt/api/v1/upload | ||
## An instance ID uniquely identifies your Galaxy instance | ||
instance_id: "80b800b4-5507-4f19-8222-c81bbb630563" | ||
## An API key is required to submit data to GRT | ||
api_key: "4f3c15e9-c054-4548-a135-7acc2fc2ea92" | ||
|
||
## The public name and description of your Galaxy instance | ||
instance: | ||
## The publicly accessible URL of your galaxy instance. E.g. https://fqdn/galaxy | ||
url: "" | ||
name: "Testing Galaxy instance" | ||
description: | | ||
Galaxy server providing tools for private use | ||
tags: | ||
#- public | ||
- private | ||
## If this is a cloudlaunch server, you could indicate that here | ||
#- cloudlaunch | ||
## If you wish to share what infrastucture you're running on, there are | ||
#tags for this: | ||
#- infra/aws | ||
#- infra/gcp | ||
#- infra/azure | ||
#- infra/other_cloud | ||
#- infra/private | ||
## Additionally if you wish to share a bit about your job runners we | ||
#would be interested to hear who is using which runners. | ||
#- cluster/condor | ||
#- cluster/slurm | ||
location: | ||
# If autodetect is set to true, then an attempt will be made to | ||
# automatically detect your location using a third party service | ||
# (http://ip-api.com, https://icanhazip.com). | ||
autodetect: false | ||
# If you still wish to share the location of your Galaxy server | ||
# (great for helping people find local resources for Galaxy) | ||
latitude: 51 | ||
longitude: 4 | ||
|
||
|
||
tool_blacklist: | ||
- __SET_METADATA__ | ||
- upload1 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For this? CloudLaunch? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep, I remembered your PR to coudlaunch, saved me some time since you already had examples of using the service :)