Skip to content
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 sample volumeEM datasets from the BIA #14

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Commits on Jul 18, 2023

  1. Add sample volumeEM datasets from the BIA

    see: https://uk1s3.embassy.ebi.ac.uk/bia-integrator-data/pages/vem.html
    
    Generated with the script:
    
    ```
    echo "URL,Study"
    for x in 10094 10310 10392 10442 10479 10553 10819 10967 10903 10311 11380;
    do
        for k in $(mc ls uk1/bia-integrator-data/EMPIAR-${x}/ --json | jq -r '.url + .key');
        do
            echo ${k},EMPIAR-${x}
        done
    done
    ```
    joshmoore committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    ed47677 View commit details
    Browse the repository at this point in the history
  2. Add .zarr elements

    updated script:
    
    ```
    echo "URL,Study"
    for x in 10094 10310 10392 10442 10479 10553 10819 10967 10903 10311 11380;
    do
        for k in $(mc ls uk1/bia-integrator-data/EMPIAR-${x}/ --json | jq -r '.url + .key + (.key | gsub("/";"")) + ".zarr"');
        do
            echo ${k},EMPIAR-${x}
        done
    done
    ```
    joshmoore committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    3f14847 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d8a525c View commit details
    Browse the repository at this point in the history