Skip to content

Commit

Permalink
Add placeholder for lcmsLipidomics workflow in wdl
Browse files Browse the repository at this point in the history
  • Loading branch information
kheal committed Oct 1, 2024
1 parent 5c4ef46 commit 10ecd92
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions wdl/metaMS_gcms.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,26 @@ task runMetaMSGCMS {
File output_metafile = "${output_directory}/${output_filename}.json"
}

runtime {
docker: "microbiomedata/metams:2.2.2"
}
}

workflow lcmsLipidomics{
call runLipidomicsMetaMS

}

task lcmsLipidomics{
input {
File lipid_workflow_toml_path
}

command {
metaMS run-lipidomics-workflow \
${lipid_workflow_toml_path}
}

runtime {
docker: "microbiomedata/metams:2.2.2"
}
Expand Down

0 comments on commit 10ecd92

Please sign in to comment.