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
f2d1a01e
Commit
f2d1a01e
authored
6 years ago
by
pjvan_thof
Browse files
Options
Downloads
Patches
Plain Diff
Remove samplesheet.wdl
parent
c3f2adf6
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
+0
-73
0 additions, 73 deletions
samplesheet.wdl
with
0 additions
and
73 deletions
samplesheet.wdl
deleted
100644 → 0
+
0
−
73
View file @
c3f2adf6
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"]
}
}
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