allow specifying a name for a sequence
[mussa.git] / qui / mussa_setup_dialog / SetupInfo.cpp
index c0bef3d16759bab897fa27627a3b3e856989f263..c01ade37eae8ca8553272f7358902fed2e98eb7c 100644 (file)
@@ -1,8 +1,15 @@
 #include "qui/mussa_setup_dialog/SetupInfo.hpp"
 
-SetupInfo::SetupInfo(std::string newSeqFile, std::string newAnnotFile,
-                    int newFastaIndex, int newSubSeqStart, int newSubSeqEnd) 
-  : seqFile(newSeqFile),
+SetupInfo::SetupInfo(
+    std::string newName,
+    std::string newSeqFile, 
+    std::string newAnnotFile,
+         int newFastaIndex, 
+    int newSubSeqStart, 
+    int newSubSeqEnd
+    ) 
+  : seqName(newName),
+    seqFile(newSeqFile),
     annotFile(newAnnotFile),
     fastaIndex(newFastaIndex),
     subSeqStart(newSubSeqStart),