comparison Snakefile @ 37:5656cfea6d97 draft

Uploaded
author chrisw
date Wed, 20 Nov 2019 02:42:57 +0000
parents e4dc3d0c31de
children
comparison
equal deleted inserted replaced
36:ad4b5855143b 37:5656cfea6d97
45 sys.stderr.write("error in run_command for command: %s\n" % cmd_args) 45 sys.stderr.write("error in run_command for command: %s\n" % cmd_args)
46 raise cpe 46 raise cpe
47 47
48 import re 48 import re
49 #limit the outputs/steps to only 1) STAR called junctions 2) all reads per-base coverage (BigWigs) 3) all reads exon summarized coverage 4) AUC (for QC) 49 #limit the outputs/steps to only 1) STAR called junctions 2) all reads per-base coverage (BigWigs) 3) all reads exon summarized coverage 4) AUC (for QC)
50 STEPS_FILES_FILTER=re.compile(r'(unmapped)|(download)|(salmon)|(extract_jx)|(jx_bed)|(manifest)|(nonref)|(Chimeric)(fastq_check)|(frag)|(unique)') 50 STEPS_FILES_FILTER=re.compile(r'(unmapped)|(download)|(salmon)|(extract_jx)|(jx_bed)|(manifest)|(nonref)|(Chimeric)|(fastq_check)|(frag)|(unique)')
51 def remove_steps_files(): 51 def remove_steps_files():
52 #modify STEP and FILES 52 #modify STEP and FILES
53 #so we don't run download or unmapped steps 53 #so we don't run download or unmapped steps
54 global FILES 54 global FILES
55 global STEPS 55 global STEPS