We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For large files, we often have to manually transfer the data to GCP using the approach outlined below. Either we:
published_project.gcp.sent_files
Add data to Google Cloud bucket First go to the project management page (e.g. https://physionet.org/console/published-projects//kinecal/1.0.3/) and click “Create bucket” to create a bucket on Google Cloud. Now the bucket has been created, we can upload the files directly from the PhysioNet server using gsutil: gsutil -m cp -r ./* gs://[kinecal-1.0.3.physionet.org](http://kinecal-1.0.3.physionet.org/) The files are displayed if {% project.gcp and project.gcp.sent_files %} == True, so now we need to: # Set the sent files flag to True p = PublishedProject.objects.get(slug="kinecal", version="1.0.3") p.gcp.sent_files = True p.gcp.save()
First go to the project management page (e.g. https://physionet.org/console/published-projects//kinecal/1.0.3/) and click “Create bucket” to create a bucket on Google Cloud.
Now the bucket has been created, we can upload the files directly from the PhysioNet server using gsutil:
gsutil -m cp -r ./* gs://[kinecal-1.0.3.physionet.org](http://kinecal-1.0.3.physionet.org/)
The files are displayed if {% project.gcp and project.gcp.sent_files %} == True, so now we need to:
{% project.gcp and project.gcp.sent_files %} == True
# Set the sent files flag to True p = PublishedProject.objects.get(slug="kinecal", version="1.0.3") p.gcp.sent_files = True p.gcp.save()
The text was updated successfully, but these errors were encountered:
#1903 is related.
Sorry, something went wrong.
No branches or pull requests
For large files, we often have to manually transfer the data to GCP using the approach outlined below. Either we:
published_project.gcp.sent_files
flag to be toggled.The text was updated successfully, but these errors were encountered: