浏览代码

fasta location

master
LUYAO REN 3 年前
父节点
当前提交
6a6fc9112c
共有 2 个文件被更改,包括 3 次插入5 次删除
  1. +1
    -3
      inputs
  2. +2
    -2
      tasks/pre.wdl

+ 1
- 3
inputs 查看文件

@@ -2,10 +2,8 @@
"{{ project_name }}.fasta": "{{ fasta }}",
"{{ project_name }}.disk_size": "{{ disk_size }}",
"{{ project_name }}.docker": "{{ docker }}",
"{{ project_name }}.bam_index": "{{ bam_index }}",
"{{ project_name }}.cluster_config": "{{ cluster_config }}",
"{{ project_name }}.bam": "{{ bam }}",
"{{ project_name }}.memory": "{{ memory }}",
"{{ project_name }}.vcf": "{{ vcf }}",
"{{ project_name }}.sample": "{{ sample }}",
"{{ project_name }}.ref_dir": "{{ ref_dir }}"
}

+ 2
- 2
tasks/pre.wdl 查看文件

@@ -19,9 +19,9 @@ task pre {
export HGREF=/cromwell_root/tmp/reference_data/GRCh38.d1.vd1.fa

if [[ ${sample} =~ "LCL7" ]]; then
/opt/hap.py/bin/pre.py ${vcf} ${sample}.vcf.gz -r ${ref_dir}/${fasta} -D -L --fixchr --gender male --threads $nt --logfile ${sample}.vairants.normalization.pre.log
/opt/hap.py/bin/pre.py ${vcf} ${sample}.vcf.gz -r /cromwell_root/tmp/reference_data/GRCh38.d1.vd1.fa -D -L --fixchr --gender male --threads $nt --logfile ${sample}.vairants.normalization.pre.log
else
/opt/hap.py/bin/pre.py ${vcf} ${sample}.vcf.gz -r ${ref_dir}/${fasta} -D -L --fixchr --gender female --threads $nt --logfile ${sample}.vairants.normalization.pre.log
/opt/hap.py/bin/pre.py ${vcf} ${sample}.vcf.gz -r /cromwell_root/tmp/reference_data/GRCh38.d1.vd1.fa -D -L --fixchr --gender female --threads $nt --logfile ${sample}.vairants.normalization.pre.log
fi

>>>

正在加载...
取消
保存