Skip to content
Snippets Groups Projects
Commit 0eaf74e7 authored by Floreal Cabanettes's avatar Floreal Cabanettes
Browse files

Fix chromsmask rule

parent f1fae11a
No related branches found
No related tags found
1 merge request!11Integrate popsim simulation software to cnvpipelines
......@@ -146,12 +146,13 @@ rule chromsvmask:
output:
SUBDIR + "work/svmask_{chrom}.fasta"
params:
rl = config['read_len']
rl = config['read_len'],
subdir = SUBDIR
log:
"logs/svmask/{chrom}.log"
shell:
"java -cp {CLASSPATH} -Xmx4g org.broadinstitute.sv.apps.ComputeGenomeMask "
" -R {input.fa} -O work/svmask_{wildcards.chrom}.fasta -readLength {params.rl}"
" -R {input.fa} -O {params.subdir}/work/svmask_{wildcards.chrom}.fasta -readLength {params.rl}"
" -sequence {wildcards.chrom} 2> {log} "
rule bed2fasta:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment