-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add FTP upload #60
Add FTP upload #60
Conversation
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.
Great!
Could you also add the submission end-points in here:
MARS/mars-cli/generate_config.py
Lines 25 to 44 in 29af0bb
config["webin"] = { | |
"development-url": "https://wwwdev.ebi.ac.uk/ena/dev/submit/webin/auth", | |
"development-token-url": "https://wwwdev.ebi.ac.uk/ena/dev/submit/webin/auth/token", | |
"production-url": "https://www.ebi.ac.uk/ena/submit/webin/auth", | |
"production-token-url": "https://www.ebi.ac.uk/ena/submit/webin/auth/token", | |
} | |
config["ena"] = { | |
"development-url": "https://wwwdev.ebi.ac.uk/ena/submit/webin-v2/", | |
"development-submission-url": "https://wwwdev.ebi.ac.uk/ena/submit/drop-box/submit/?auth=ENA", | |
"production-url": "https://www.ebi.ac.uk/ena/submit/webin-v2/", | |
"production-submission-url": "https://www.ebi.ac.uk/ena/submit/drop-box/submit/?auth=ENA", | |
} | |
config["biosamples"] = { | |
"development-url": "https://wwwdev.ebi.ac.uk/biosamples/samples/", | |
"development-submission-url": "https://wwwdev.ebi.ac.uk/biosamples/samples/", | |
"production-url": "https://www.ebi.ac.uk/biosamples/samples/", | |
"production-submission-url": "https://www.ebi.ac.uk/biosamples/samples/", | |
} |
This is the part that generates the config file at install.
@kdp-cloud I think it's there already, unless you mean something else? |
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.
You're right! My mistake!
Tasks