-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation on how to work with tags
- Loading branch information
Tjelvar Olsson
committed
Mar 24, 2020
1 parent
fffe481
commit 66f59d0
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Tagging datasets | ||
================ | ||
|
||
It is possible to tag datasets with labels. | ||
|
||
To tag a dataset with the label "rnaseq" one would use the command below:: | ||
|
||
$ dtool tag set <DS_URI> rnaseq | ||
|
||
It is possible to add more than one tag to a dataset. The command below | ||
adds the tag "A.thaliana":: | ||
|
||
$ dtool tag set <DS_URI> A.thaliana | ||
|
||
To list tags one would use the command below: | ||
|
||
$ dtool tag ls <DS_URI> | ||
|
||
This would produce the output:: | ||
|
||
A.thalina | ||
rnaseq | ||
|
||
It is possible to delete a tag that has been added to a dataset:: | ||
|
||
|
||
$ dtool tag delete <DS_URI> A.thaliana |