Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
0284bdb8
Unverified
Commit
0284bdb8
authored
6 years ago
by
Cats
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #37 from biowdl/BIOWDL-19
Add samplesheet structs
parents
8fccf548
e565356d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
samplesheet.wdl
+73
-0
73 additions, 0 deletions
samplesheet.wdl
with
73 additions
and
0 deletions
samplesheet.wdl
0 → 100644
+
73
−
0
View file @
0284bdb8
version 1.0
struct Readgroup {
String id
File R1
String R1_md5
File? R2
String R2_md5
}
struct Library {
String id
Array[Readgroup]+ readgroups
}
struct Sample {
String id
Array[Library]+ libraries
}
task sampleConfigFileToStruct {
input {
File sampleConfigFile
String outputJson = "output.json"
}
# Below command can convert any samplesheet with a nested dictionary
# structure to a list of objects model.
# It was specifically designed to run on both python2 and python3.
# Only requirement is PyYAML.
#
# Code maintained in https://github.com/rhpvorderman/samplesheet-to-struct
# can be moved to biowdl group later.
command {
python <<CODE
import yaml
import json
def nested_dicts_to_lists(dictionary):
new_dict = dict()
for key, value in dictionary.items():
if type(value) == dict:
new_dict[key] = dict_to_item_list_with_id(value)
else:
new_dict[key] = value
return new_dict
def dict_to_item_list_with_id(dictionary):
items = []
for sub_key, sub_dictionary in dictionary.items():
item_dict = dict(id=sub_key, **nested_dicts_to_lists(sub_dictionary))
items.append(item_dict)
return items
with open("~{sampleConfigFile}", "r") as samplesheet:
samplesheet_dict = yaml.load(samplesheet)
sample_struct = nested_dicts_to_lists(samplesheet_dict)
with open("~{outputJson}", "w") as output_json:
output_json.write(json.dumps(sample_struct))
CODE
}
output {
Map[String,Array[Sample]] map = read_json(outputJson)
Array[Sample] samples = map["samples"]
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment