import java.util.Scanner;

/**
 * Simple driver for identifying blobs in a 2D gel.
 *   @author Dave Reed
 *   @version 10/20/24
 */
public class GelDriver {
    public static void main(String[] args) throws java.io.FileNotFoundException {
        Scanner input = new Scanner(System.in);
        System.out.println("Enter the file name: ");
        String filename = input.next();
        input.close();
        
        Gel g = new Gel(filename);
        
        System.out.println(g);
        g.findBlobs();
    }    
}
