comparison antismash.xml @ 16:e2df6fe8b447 draft

Uploaded
author bgruening
date Fri, 11 Oct 2013 16:46:08 -0400
parents 9a099b9b6857
children 213d82f33fc2
comparison
equal deleted inserted replaced
15:9a099b9b6857 16:e2df6fe8b447
39 39
40 ; 40 ;
41 ## shuffling files to create the correct outputs for Galaxy 41 ## shuffling files to create the correct outputs for Galaxy
42 42
43 ## html output 43 ## html output
44 #if 'html' in $outputs: 44 #if 'html' in str($outputs).split(','):
45 cp #echo os.path.join($outputfolder, 'index.html')# $html; 45 cp #echo os.path.join($outputfolder, 'index.html')# $html;
46 #end if 46 #end if
47 47
48 ## gene clusters 48 ## gene clusters
49 #if 'geneclusterprots_tabular' in $outputs: 49 #if 'geneclusterprots_tabular' in str($outputs).split(','):
50 cp #echo os.path.join($outputfolder, 'geneclusters.txt')# $geneclusterprots; 50 cp #echo os.path.join($outputfolder, 'geneclusters.txt')# $geneclusterprots;
51 #end if 51 #end if
52 52
53 ##SVG images 53 ##SVG images
54 #if 'archive_svgs' in $outputs: 54 #if 'archive_svgs' in str($outputs).split(','):
55 cd #echo os.path.join($outputfolder, 'svg')#; 55 cd #echo os.path.join($outputfolder, 'svg')#;
56 tar cfz $archive_svgs *_all.svg genecluster*; 56 tar cfz $archive_svgs *_all.svg genecluster*;
57 #end if 57 #end if
58 58
59 ##all files in a archive 59 ##all files in a archive
60 #if 'archive' in $outputs: 60 #if 'archive' in str($outputs).split(','):
61 cd $outputfolder; 61 cd $outputfolder;
62 tar cf $archive *.zip; 62 tar cf $archive *.zip;
63 #end if 63 #end if
64 64
65 ## genbank 65 ## genbank
66 #if 'gb' in $outputs: 66 #if 'gb' in str($outputs).split(','):
67 #for $gb_file in glob.glob( os.path.join($outputfolder, '*.gbk') ): 67 #for $gb_file in glob.glob( os.path.join($outputfolder, '*.gbk') ):
68 cat $gb_file >> $genbank; 68 cat $gb_file >> $genbank;
69 #end for 69 #end for
70 #end if 70 #end if
71 71