@@ -29,6 +29,7 @@ If you need to change your credentials after this point, and you've opted to sav
2929## Command Line Usage
3030
3131#### Downloading a dataset:
32+
3233``` bash
3334Usage: cirro download [OPTIONS]
3435
@@ -37,29 +38,41 @@ Usage: cirro download [OPTIONS]
3738Options:
3839 --project TEXT Name or ID of the project
3940 --dataset TEXT ID of the dataset
40- --file... TEXT Name and relative path of the file (optional)
41+ --file TEXT Relative path of the file(s) to download (optional, can be used multiple times )
4142 --data-directory TEXT Directory to store the files
4243 -i, --interactive Gather arguments interactively
4344 --help Show this message and exit.
4445```
4546
47+ ``` bash
48+ $ cirro download --project " Test Project 1" --dataset " test" --data-directory " ~/download"
49+ ```
50+
4651#### Uploading a dataset:
52+
4753``` bash
4854Usage: cirro upload [OPTIONS]
4955
5056 Upload and create a dataset
5157
5258Options:
53- --name TEXT Name of the dataset
54- --description TEXT Description of the dataset (optional)
55- --project TEXT Name or ID of the project
56- --data-type TEXT Name or ID of the data type (ingest process)
57- --data-directory TEXT Directory you wish to upload
58- -i, --interactive Gather arguments interactively
59- --help Show this message and exit.
59+ --name TEXT Name of the dataset
60+ --description TEXT Description of the dataset (optional)
61+ --project TEXT Name or ID of the project
62+ --data-type, --process TEXT Name or ID of the data type (--process is deprecated)
63+ --data-directory TEXT Directory you wish to upload
64+ --file TEXT Relative path of the file(s) to upload (optional, can be used multiple times)
65+ -i, --interactive Gather arguments interactively
66+ --include-hidden Include hidden files in the upload (e.g., files starting with .)
67+ --help Show this message and exit.
68+ ```
69+
70+ ``` bash
71+ $ cirro upload --project " Test Project 1" --name " test" --file " sample1.fastq.gz" --file " sample2.fastq.gz" --data-directory " ~/data" --data-type " Paired DNAseq (FASTQ)"
6072```
6173
6274#### Uploading a reference
75+
6376``` bash
6477Usage: cirro upload-reference [OPTIONS]
6578
@@ -69,10 +82,9 @@ Options:
6982 --name TEXT Name of the reference
7083 --reference-type TEXT Type of the reference (e.g., Reference Genome (FASTA))
7184 --project TEXT Name or ID of the project
72- --reference-file TEXT Location of reference file to upload (can specify multiple files )
85+ --reference-file TEXT Location of reference file(s) to upload (can be used multiple times )
7386 -i, --interactive Gather arguments interactively
7487 --help Show this message and exit.
75-
7688```
7789
7890#### Listing datasets:
0 commit comments