-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #524 from broadinstitute/dp-scaffold
scaffold_and_refine_multitaxa -- more thorough assembly outputs
- Loading branch information
Showing
6 changed files
with
91 additions
and
36 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
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
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,21 @@ | ||
version 1.0 | ||
|
||
#DX_SKIP_WORKFLOW | ||
import "../tasks/tasks_terra.wdl" as terra | ||
|
||
workflow terra_tsv_to_table { | ||
meta { | ||
description: "Upload tsv file to Terra data table: insert-or-update on existing rows/columns" | ||
author: "Broad Viral Genomics" | ||
email: "[email protected]" | ||
} | ||
|
||
call terra.check_terra_env | ||
|
||
call terra.upload_entities_tsv { | ||
input: | ||
workspace_name = check_terra_env.workspace_name, | ||
terra_project = check_terra_env.workspace_namespace | ||
} | ||
} |