File: MatrixFile.java

package info (click to toggle)
bbmap 39.20%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,024 kB
  • sloc: java: 312,743; sh: 18,099; python: 5,247; ansic: 2,074; perl: 96; makefile: 39; xml: 38
file content (88 lines) | stat: -rwxr-xr-x 2,023 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
package fileIO;
import dna.Matrix;



public class MatrixFile extends TextFile{
	
	public static void main(String[] args){
		
		try {
			//Name of mat file
			String name=args[0];
			
			MatrixFile mat=new MatrixFile(name);
			
			String s=null;
			
			for(s=mat.readLine(); s!=null; s=mat.readLine()){
				System.out.println(s);
			}
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
		
	}
	
	
	public MatrixFile(String name){super(name, false);}
	
	@Override
	public String nextLine(){
		String line=readLine();
		
		while(line!=null && line.charAt(0)!='{' && line.charAt(0)!='/'){
			line=readLine();
		}
		return line;
	}
	
	public Matrix nextMatrix(){
		String line;
		String[] split;
		
		line=nextLine();
		if(line==null || line.startsWith("//end")){return null;}
		
		assert(line.startsWith("//name: ")) : line;
		String name=line.replace("//name: ","").trim();
		
		line=nextLine();
		assert(line.startsWith("//size: ")) : line;
		line=line.replace("//size: ","");
		split=line.split("x");
		int length=Integer.parseInt(split[0]);
		int width=Integer.parseInt(split[1]);
		
		line=nextLine();
		assert(line.startsWith("//prefix: ")) : line;
		line=line.replace("//prefix: ","");
		int prefix=Integer.parseInt(line);
		
		line=nextLine();
		assert(line.startsWith("//count: ")) : line;
		line=line.replace("//count: ","");
		int count=Integer.parseInt(line);
		
		
		float[][] grid=new float[length][width];
		for(int i=0; i<length; i++){
			line=nextLine();
			
			while(line.startsWith("//")){line=nextLine();}
			
			assert(line.startsWith("{"));
			if(line.endsWith(",")){line=line.substring(0, line.length()-1);}
			assert(line.endsWith("}"));
			line=line.replace("{", "").replace("}", "").replace(" ", "");
			split=line.split(",");
			assert(split.length==width);
			for(int j=0; j<split.length; j++){
				grid[i][j]=Float.parseFloat(split[j]);
			}
		}
		
		return new Matrix(grid, prefix, name);
	}
	
}