Skip to content

Commit 50c06ce

Browse files
Tims tof reader fix to enable reading off of NAS (#897)
* Updated SQL connection constructor * Removed local file reference
1 parent b83de70 commit 50c06ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mzLib/Readers/timsTOF/TimsTofFileReader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ internal void OpenSqlConnection()
7979
return;
8080

8181
_sqlConnection = new SQLiteConnection("Data Source=" +
82-
Path.Combine(FilePath, "analysis.tdf") +
83-
"; Version=3");
82+
Path.Combine(FilePath, "analysis.tdf") +
83+
"; Version=3", parseViaFramework: true);
8484
try
8585
{
8686
_sqlConnection.Open();

0 commit comments

Comments
 (0)