Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/bioinformaticsalgorithms/FBAlignment.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
Expand All @@ -20,6 +20,7 @@ public class FBAlignment {
static double pXY = 0.9;

public static double[][] run(String seq1, String seq2) {
System.out.println("sd");
int n = seq1.length();
int m = seq2.length();
double[][] fM = new double[n + 1][m + 1];
Expand Down