@@ -528,12 +528,12 @@ rule prep_metaquast:
528
528
input :
529
529
report = join (workpath ,"{name}" ,"info" ,"{name}.reads_kraken2_report.txt" ),
530
530
output :
531
- txt = join (workpath ,"temp" , " {name}" ,"{name}_reads_class_names.txt" ),
532
- fa = join (workpath ,"temp" , " {name}" ,"{name}.metaquast.fa" ),
531
+ txt = join (workpath ,"{name}" , "temp " ,"{name}_reads_class_names.txt" ),
532
+ fa = join (workpath ,"{name}" , "temp " ,"{name}.metaquast.fa" ),
533
533
params :
534
534
rname = 'prepmetaq' ,
535
535
ncbi_viral = config ['references' ]['ncbi_viral_fasta' ],
536
- outdir = join (workpath ,"temp" , " {name}" ,"metaquastref" ),
536
+ outdir = join (workpath ,"{name}" , "temp " ,"metaquastref" ),
537
537
threads : int (allocated ("threads" , "prep_metaquast" , cluster ))
538
538
envmodules :
539
539
config ['tools' ]['ucsc' ]
@@ -570,12 +570,13 @@ rule metaquast:
570
570
input :
571
571
metaspades = join (workpath ,"{name}" ,"output" ,"{name}.metaspades.contigs.fa" ),
572
572
megahit = join (workpath ,"{name}" ,"output" ,"{name}.megahit.contigs.fa" ),
573
+ dep = join (workpath ,"{name}" ,"temp" ,"{name}.metaquast.fa" ),
573
574
output :
574
- report = join (workpath ,"output" , " {name}" ,"{name}_metaquast" ,"report.html" )
575
+ report = join (workpath ,"{name}" , "output " ,"{name}_metaquast" ,"report.html" )
575
576
params :
576
577
rname = 'metaq' ,
577
- ref = join (workpath ,"temp" , " {name}" ,"metaquastref" ),
578
- outdir = join (workpath ,"output" , " {name}" ,"{name}_metaquast" ),
578
+ ref = join (workpath ,"{name}" , "temp " ,"metaquastref" ),
579
+ outdir = join (workpath ,"{name}" , "output " ,"{name}_metaquast" ),
579
580
threads : int (allocated ("threads" , "metaquast" , cluster ))
580
581
container :
581
582
config ['images' ]['metaquast' ]
0 commit comments