Skip to content

Commit

Permalink
Merge pull request #279 from kabilar/client
Browse files Browse the repository at this point in the history
Updates to replace `lincbrain-cli` with `dandi`
  • Loading branch information
aaronkanzer authored Nov 19, 2024
2 parents d847519 + 0716371 commit 6fdd696
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions web/src/components/FileBrowser/FileUploadInstructions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
but this is where they will appear once they're added.
</div>
<div class="my-7">
<span class="text-subtitle-1">Use the LINC Brain CLI on the command line:</span>
<span class="text-subtitle-1">Use the DANDI CLI on the command line:</span>
<div
class="d-flex justify-center"
style="font-family: monospace;"
Expand All @@ -31,7 +31,7 @@
</div>
</div>
<div>
<span class="text-subtitle-1">Don't have LINC Brain CLI?</span>
<span class="text-subtitle-1">Don't have the DANDI CLI?</span>
<div>
<span class="text-body-2 grey--text text--darken-1">
<span class="text-body-2 grey--text text--darken-1">
Expand Down Expand Up @@ -60,7 +60,7 @@ const downloadCommand = computed(() => {
: 'https://lincbrain.org/dandiset/';
return dandisetIdentifier.value
? `> lincbrain download ${baseUrl}${dandisetIdentifier.value}/draft`
? `> dandi download ${baseUrl}${dandisetIdentifier.value}/draft`
: ''; // Empty string just as a fallback in case store.dandiset? is undefined
});
</script>
Expand Down
10 changes: 5 additions & 5 deletions web/src/views/DandisetLandingView/DownloadDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</v-card-title>
<v-list class="pa-0">
<v-list-item dense>
Use this command in your LINC Brain CLI
Use this command in your DANDI CLI
</v-list-item>
<v-list-item dense>
<CopyText
Expand Down Expand Up @@ -92,16 +92,16 @@
</v-expansion-panel>
<v-expansion-panel>
<v-expansion-panel-header>
Don't have LINC Brain CLI?
Don't have the DANDI CLI?
</v-expansion-panel-header>
<v-expansion-panel-content>
<v-list>
<v-list-item>
Install the Python client (LINC Brain CLI)
in a Python 3.7+ environment using command:
Install the Python client (DANDI CLI)
in a Python 3.9+ environment using command:
</v-list-item>
<v-list-item>
<kbd>pip install lincbrain-cli</kbd>
<kbd>pip install dandi</kbd>
</v-list-item>
</v-list>
</v-expansion-panel-content>
Expand Down

0 comments on commit 6fdd696

Please sign in to comment.