PMCC-BioinformaticsCore / janis-core

Core python modules for Janis Pipeline workflow assistant
GNU General Public License v3.0
4 stars 9 forks source link

fromwdl: allow cpus to refer to a WDL expression #98

Closed mr-c closed 3 years ago

mr-c commented 3 years ago

Example

task Example {
    input {
         Int threads = 1
    }
    runtime {
        cpu: threads
    }
}
illusional commented 3 years ago

Thanks! See linked PR. Just made a minor adjustment.