瀏覽代碼

上传文件至 ''

tags/v0.1.0
lizhihui 4 年之前
父節點
當前提交
5c56306ae1
共有 3 個文件被更改,包括 19 次插入2 次删除
  1. +3
    -1
      defaults
  2. +3
    -1
      inputs
  3. +13
    -0
      workflow.wdl

+ 3
- 1
defaults 查看文件

"multiqc_docker": "registry-vpc.cn-shanghai.aliyuncs.com/pgx-docker-registry/multiqc:v1.8", "multiqc_docker": "registry-vpc.cn-shanghai.aliyuncs.com/pgx-docker-registry/multiqc:v1.8",
"multiqc_disk_size": "100", "multiqc_disk_size": "100",
"ballgown_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/pgx-ballgown:0.0.1", "ballgown_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/pgx-ballgown:0.0.1",
"ballgown_cluster": "OnDemand bcs.a2.large img-ubuntu-vpc"
"ballgown_cluster": "OnDemand bcs.a2.large img-ubuntu-vpc",
"count_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/count:v1.0",
"count_cluster": "OnDemand bcs.a2.large img-ubuntu-vpc"
} }

+ 3
- 1
inputs 查看文件

"{{ project_name }}.multiqc_disk_size": "{{ multiqc_disk_size }}", "{{ project_name }}.multiqc_disk_size": "{{ multiqc_disk_size }}",
"{{ project_name }}.ballgown_docker": "{{ ballgown_docker }}", "{{ project_name }}.ballgown_docker": "{{ ballgown_docker }}",
"{{ project_name }}.ballgown_cluster": "{{ ballgown_cluster }}", "{{ project_name }}.ballgown_cluster": "{{ ballgown_cluster }}",
"{{ project_name }}.disk_size": "{{ disk_size if disk_size != '' else 200}}"
"{{ project_name }}.disk_size": "{{ disk_size if disk_size != '' else 200}}",
"{{ project_name }}.count_docker": "{{ count_docker }}",
"{{ project_name }}.count_cluster": "{{ count_cluster }}",
} }

+ 13
- 0
workflow.wdl 查看文件

import "./tasks/qualimapBAMqc.wdl" as qualimapBAMqc import "./tasks/qualimapBAMqc.wdl" as qualimapBAMqc
import "./tasks/qualimapRNAseq.wdl" as qualimapRNAseq import "./tasks/qualimapRNAseq.wdl" as qualimapRNAseq
import "./tasks/ballgown.wdl" as ballgown import "./tasks/ballgown.wdl" as ballgown
import "./tasks/count.wdl" as count


workflow {{ project_name }} { workflow {{ project_name }} {
File read1 File read1
String ballgown_docker String ballgown_docker
String ballgown_cluster String ballgown_cluster
String disk_size String disk_size
String count_docker
String count_cluster


call fastp.fastp as fastp { call fastp.fastp as fastp {
input: input:
gene_abundance = stringtie.gene_abundance, gene_abundance = stringtie.gene_abundance,
disk_size = disk_size disk_size = disk_size
} }

call count.count as count {
input:
sample_id = sample_id,
docker = count_docker,
cluster = count_cluster,
ballgown = stringtie.ballgown,
#gene_abundance = stringtie.gene_abundance,
disk_size = disk_size
}
} }

Loading…
取消
儲存