Describing Data Objects
You can describe objects (files, app(let)s, and workflows) on the DNAnexus Platform using the command dx describe.
Describing an Object by Name
Objects can be described using their DNAnexus Platform name via the command line interface (CLI) using a path.
Describe an Object With a Relative Path
Objects can be described relative to the user's current directory on the DNAnexus Platform. In the following example, the indexed reference genome file human_g1k_v37.bwa-index.tar.gz is described.
$ dx describe "Original files/human_g1k_v37.bwa-index.tar.gz"
Result 1:
ID file-xxxx
Class file
Project project-xxxx
Folder /Original files
Name human_g1k_v37.bwa-index.tar.gz
State closed
Visibility visible
Types -
Properties -
Tags -
Outgoing links -
Created ----
Created by Amy
via the job job-xxxx
Last modified ----
archivalState "live"
Size 3.21 GBThe entire path is enclosed in quotes because the folder name Original files contains whitespace. Instead of quotes, escape special characters with \: dx describe Original\ files/human_g1k_v37.bwa-index.tar.gz.
Describe an Object in a Different Project Using an Absolute Path
Objects can be described using an absolute path. This allows you to describe objects outside the current project context. In the following example, dx select selects the project "My Research Project" and dx describe describes the file human_g1k_v37.fa.gz in the "Reference Genome Files" project.
Describe an Object Using Object ID
Objects can be described using a unique object ID.
This example describes the workflow object "Exome Analysis Workflow" using its ID. This workflow is publicly available in the "Exome Analysis Demo" project.
Because workflows can include many app(let)s, inputs/outputs, and default parameters, the dx describe output can seem overwhelming.
Manipulating Outputs
The output from a dx describe command can be used for multiple purposes. The optional argument --json converts the output from dx describe into JSON format for advanced scripting and command line use.
In this example, the publicly available workflow object "Exome Analysis Workflow" is described and the output is returned in JSON format.
Parse, process, and query the JSON output using jq. Below, the dx describe --json output is processed to generate a list of all stages in the exome analysis pipeline.
To get the "executable" value of each stage present in the "stages" array value of the dx describe output above, use the following command:
General Response Fields Overview
Class
All
DNAnexus object type.
Project
All
Container where the object is stored.
Folder
All
Objects inside a container (project) can be organized into folders. Objects can only exist in one path within a project.
Name
All
Object name on the platform.
Visibility
All
Whether the file is visible to the user through the platform web interface.
Tags
All
Set of tags associated with an object. Tags are strings used to organize or annotate objects.
Properties
All
Key/value pairs attached to object.
All
JSON reference to another object on the platform. Linked objects are copied along with the object if the object is cloned to another project.
Created
All
Date and time object was created.
Created by
All
DNAnexus user who created the object. Contains subfield "via the job" if the object was created by an app or applet.
Last modified
All
Date and time the object was last modified.
Input Spec
App(let)s and Workflows
App(let) or workflow input names and classes. With workflows, the corresponding applet stage ID is also provided.
Output Spec
App(let) and Workflows
App(let) or workflow output names and classes. With workflows, the corresponding applet stage ID is also provided.
Last updated
Was this helpful?