File: ReformatBatchOutput.java

package info (click to toggle)
bbmap 38.90%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,520 kB
  • sloc: java: 265,882; sh: 14,954; python: 5,247; ansic: 2,074; perl: 96; xml: 38; makefile: 37
file content (220 lines) | stat: -rwxr-xr-x 5,674 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package align2;

import java.util.ArrayList;
import java.util.Arrays;

import fileIO.TextFile;
import shared.Tools;

public class ReformatBatchOutput {
	
//	Elapsed:	31.7
//
//	Mapping Statistics for 0s_default.sam:
//	mapped:                	100.00%
//	retained:              	96.06%
//	discarded:             	0.00%
//	ambiguous:             	3.94%
//
//	Strict correctness (both ends exactly correct):
//	true positive:         	96.06%
//	false positive:        	0.00%
//
//	Loose correctness (one end approximately correct):
//	true positive:         	96.06%
//	false positive:        	0.00%
//
//	false negative:        	0.00%
//	Elapsed:	2.34
//	Elapsed:	20.51
	
	
//	Elapsed:	0.33
//
//	Mapping Statistics for bwa_0S_0I_0D_0U_0N_r100.sam:
//	primary alignments:    	100 found of 100 expected
//	secondary alignments:  	0 found
//	mapped:                	100.000%
//	retained:              	97.000%
//	discarded:             	 0.000%
//	ambiguous:             	 3.000%
//
//	Strict correctness (both ends exactly correct):
//	true positive:         	97.000%
//	false positive:        	 0.000%
//
//	Loose correctness (one end approximately correct):
//	true positive:         	97.000%
//	false positive:        	 0.000%
//
//	false negative:        	 0.000%
	
	
	public static void main(String[] args){
		TextFile tf=new TextFile(args[0], false);
		String[] lines=tf.toStringLines();
		ArrayList<String> list=new ArrayList<String>();
		
		int mode=0;
		
		System.out.println(header());
		
		for(String s : lines){
			if(s.startsWith("Elapsed:")){
				if(!list.isEmpty()){
					process(list); //failure
					list.clear();
					mode=0;
				}
				mode++;
			}
			
			if(mode>0){
				list.add(s);
				if(s.startsWith("false negative:")){
					process(list);
					list.clear();
					mode=0;
				}
			}
		}
	}
	
	
	public static String header() {
		return("program\tfile\tvartype\tcount\treads\tprimary\tsecondary\ttime\tmapped\tretained\tdiscarded\tambiguous\ttruePositive\t" +
				"falsePositive\ttruePositiveL\tfalsePositiveL\tfalseNegative");
	}
	
	//bwa_1S_0I_0D_0U_0N_r400000x100.sam
	public static int getReads(String name){
//		String[] split=name.substring(0, name.length()-4).split("_");
		String[] split=name.split("_");
		String r=(split[split.length-1]);
		if(r.charAt(0)=='r' && Tools.isDigit(r.charAt(r.length()-1))){
			assert(r.charAt(0)=='r') : Arrays.toString(split)+", "+name;
			r=r.substring(1);
			if(r.contains("x")){
				r=r.substring(0, r.indexOf('x'));
			}
			return Integer.parseInt(r);
		}else{
			for(String s : split){
				if(s.endsWith("bp") && s.contains("x") && Tools.isDigit(s.charAt(0))){
					r=s.substring(0, s.indexOf('x')-1);
					return Integer.parseInt(r);
				}
			}
		}
		return 0;
	}
	
	public static char getVarType(String name){
//		String[] split=name.substring(0, name.length()-4).split("_");
		String[] split=name.split("_");
		for(String s : split){
			char c=s.charAt(0);
			if(Tools.isDigit(c) && c!='0' && !s.endsWith("bp")){
				return s.charAt(s.length()-1);
			}
		}
		return '?';
	}
	
	public static int getCount(String name){
//		String[] split=name.substring(0, name.length()-4).split("_");
		String[] split=name.split("_");
		for(String s : split){
			char c=s.charAt(0);
			if(Tools.isDigit(c) && c!='0' && !s.endsWith("bp")){
				String r=s.substring(0, s.length()-1);
				return Integer.parseInt(r);
			}
		}
		return 0;
	}
	
	public static String getProgram(String name){
		return name.substring(0, name.indexOf('_'));
	}
	
	

	public static void process(ArrayList<String> list){
		
		String name=null;
//		String count=null;
		String time=null;
		StringBuilder sb=new StringBuilder();
		
		int primary=0;
		int secondary=0;
		int expected=0;
		
		for(String s : list){
			String[] split=s.split("\t");
			String a=split[0];
			String b=split.length>1 ? split[1] : null;
			if(a.equals("Elapsed:")){
				time=b;
			}else if(a.startsWith("lines:")){
				//do nothing
			}else if(a.startsWith("Mapping Statistics for ")){
				name=a.replace("Mapping Statistics for ", "").replace(".sam:", "");
			}else if(a.startsWith("primary alignments:")){
				assert(b!=null) : "Bad line: "+s;
				b=b.replace(" found of ", "_");
				b=b.replace(" expected", "");
				String[] split2=b.split("_");
				primary=Integer.parseInt(split2[0]);
				expected=Integer.parseInt(split2[1]);
			}else if(a.startsWith("secondary alignments:")){
				assert(b!=null) : "Bad line: "+s;
				b=b.replace(" found", "");
				secondary=Integer.parseInt(b);
			}else if(b!=null){
				assert(!b.contains("found")) : "\na='"+a+"'\nb='"+b+"'\n"+a.equals("primary alignments:");
				sb.append('\t').append(b.replace("%", ""));
			}
			
		}
		
//		if(name!=null){
//			count="";
//
//			String[] split=name.split("_");
//
//			for(String s : split){
//				if(s!=null && s.length()>0 && s.charAt(0)!='0'){
//					for(int i=0; i<s.length(); i++){
//						char c=s.charAt(i);
//						if(Tools.isDigit(c)){count=count+c;}
//						else{break;}
//					}
//				}
//				if(count.length()>0){break;}
//			}
//		}
		
		String prg=null;
		char type='S';
		int reads=1;
		int vars=0;
		
		if(name!=null){
			try {
				prg=getProgram(name);
				type=getVarType(name);
				reads=getReads(name);
				vars=getCount(name);
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
		
		System.out.println(prg+"\t"+name+"\t"+type+"\t"+vars+"\t"+reads+"\t"+primary+"\t"+secondary+"\t"+time+sb);
		
	}
	
}