-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Take a stab at estimating depth based on filesize.
- updated parameter_meta - updated inputs.json - cleaned up some whitespace - added comments - using fasta filesize to estimate depth rather than a separate task; based on Greg's experiments, an uncompressed 10x FASTA is ~60GB
- Loading branch information
1 parent
6c02327
commit 49acf5c
Showing
4 changed files
with
57 additions
and
179 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
{ | ||
"de_novo_assembly.cohort": { | ||
"cohort_id": "String", | ||
"samples": [ | ||
{ | ||
"sample_id": "String", | ||
"movie_bams": "Array[File]", | ||
"sex": "String?", | ||
"father_id": "String?", | ||
"mother_id": "String?", | ||
"run_de_novo_assembly": "Boolean" | ||
} | ||
"de_novo_assembly.cohort": { | ||
"cohort_id": "String", | ||
"samples": [ | ||
{ | ||
"sample_id": "String", | ||
"movie_bams": "Array[File]", | ||
"sex": "String?", | ||
"father_id": "String?", | ||
"mother_id": "String?", | ||
"run_de_novo_assembly": "Boolean" | ||
} | ||
], | ||
"run_de_novo_assembly_trio": "Boolean" | ||
}, | ||
"de_novo_assembly.references": [ | ||
{ | ||
"name": "String", | ||
"fasta": { | ||
"data": "File", | ||
"data_index": "File" | ||
} | ||
} | ||
], | ||
"run_de_novo_assembly_trio": "Boolean" | ||
}, | ||
"de_novo_assembly.references": [ | ||
{ | ||
"name": "String", | ||
"fasta": { | ||
"data": "File", | ||
"data_index": "File" | ||
} | ||
], | ||
"de_novo_assembly.zones": "String? (optional); required if backend is set to 'AWS'", | ||
"de_novo_assembly.aws_spot_queue_arn": "String? (optional); required if backend is set to 'AWS'", | ||
"de_novo_assembly.aws_on_demand_queue_arn": "String? (optional)", | ||
"de_novo_assembly.preemptible": "Boolean", | ||
"de_novo_assembly.backend": "String ['GCP', 'Azure', 'AWS', or 'HPC']", | ||
"de_novo_assembly.container_registry": "String? (optional)", | ||
} | ||
} | ||
"de_novo_assembly.zones": "String? (optional); required if backend is set to 'AWS'", | ||
"de_novo_assembly.aws_spot_queue_arn": "String? (optional); required if backend is set to 'AWS'", | ||
"de_novo_assembly.aws_on_demand_queue_arn": "String? (optional)", | ||
"de_novo_assembly.preemptible": "Boolean", | ||
"de_novo_assembly.backend": "String ['GCP', 'Azure', 'AWS', or 'HPC']", | ||
"de_novo_assembly.container_registry": "String? (optional)" | ||
} |