findtaginfoalgo.cc

Go to the documentation of this file.
00001 #include "findtaginfoalgo.h"
00002 #include "algoparam.h"
00003 #include <iostream>
00004 #include "readdata.h"
00005 #include "generaldata.h"
00006 #include <cassert>
00007 #include <qmessagebox.h>
00008 #include <qinputdialog.h>
00009 #include <limits>
00010 #include "featuredata.h"
00011 #include <algorithm>
00012 
00013 using namespace std;
00014 
00015 void FindTaginfoAlgo::start()
00016 {
00017   if ( selectedReads.empty() ) {
00018     return;
00019   }
00020   
00021   bool ok;
00022   QString res = QInputDialog::getText ( "Find TagInfo", "Enter tag string:", QLineEdit::Normal, QString::null, &ok );
00023   
00024   
00025   if ( ok ) {
00026     // user entered something and pressed OK
00027   } else {
00028     // user pressed Cancel
00029     return;
00030   }
00031   
00032   
00033   
00034 }
00035 

Generated on Fri Jul 17 20:19:29 2009 for ngsview by  doxygen 1.5.1