You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
filePath=parent;// change the file path to the .d directory so that it can be properly read by the file reader
1806
1827
gotocase".d";
1828
+
case".baf":
1829
+
// for regular Bruker TOF files, the analysis.baf file is in a ".d" directory
1830
+
// the fileReader is designed to take the path to the .d directory instead of the individual files
1831
+
varbafParent=Path.GetDirectoryName(filePath);
1832
+
if(!IsValidBafDirectory(bafParent))
1833
+
{
1834
+
NotificationHandler(null,newStringEventArgs($"{bafParent} is not a valid Bruker data file; {filePath} could not be added.",null));
1835
+
return;
1836
+
}
1837
+
filePath=bafParent;// change the file path to the .d directory so that it can be properly read by the file reader
1838
+
gotocase".d";
1807
1839
case".d":// Bruker data files are directories that contain .d files
1808
1840
NotificationHandler(null,newStringEventArgs("Quantification and calibration are not currently supported for Bruker data files. All other features of MetaMorpheus will function.",null));
0 commit comments