Skip to content
Snippets Groups Projects
Commit f0b558f8 authored by langella's avatar langella
Browse files

get_samples replaced by getMsRunSet

git-svn-id: https://subversion.renater.fr/xtandempipeline/trunk@363 b8ef2a07-7df7-436f-90b9-41648038564b
parent fc04f677
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,7 @@ public class ProticDbMlWriter {
writer.writeStartElement("samples");
for (Identification ident : arrayIdentifications) {
for (MsRun samp : ident.get_samples()) {
for (MsRun samp : ident.getMsRunSet()) {
writer.writeStartElement("sample");
String id_samp = "samp" + sample_to_id.size();
String id_msrun = "msr" + msrun_to_id.size();
......@@ -216,7 +216,7 @@ public class ProticDbMlWriter {
writer.writeStartElement("msRuns");
for (Identification ident : arrayIdentifications) {
for (MsRun samp : ident.get_samples()) {
for (MsRun samp : ident.getMsRunSet()) {
String name = samp.getSampleName();
name = name.replaceAll(".xml", "");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment