Skip to content

Commit

Permalink
Merge pull request #77 from CarlosHorro/folder_fix
Browse files Browse the repository at this point in the history
Added "file:///" to the "location" attribute of "sourceFile" element …
  • Loading branch information
CarlosHorro authored Apr 29, 2020
2 parents 182e958 + 3fd7925 commit 71e76a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Writer/MzMlSpectrumWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public override void Write(IRawDataPlus rawFile, int firstScanNumber, int lastSc
_writer.WriteStartElement("sourceFile");
_writer.WriteAttributeString("id", SourceFileId);
_writer.WriteAttributeString("name", ParseInput.RawFileNameWithoutExtension);
_writer.WriteAttributeString("location", ParseInput.RawFilePath);
_writer.WriteAttributeString("location", "file:///"+ParseInput.RawFilePath);
SerializeCvParam(new CVParamType
{
accession = "MS:1000768",
Expand Down

0 comments on commit 71e76a4

Please sign in to comment.