Skip to content
Snippets Groups Projects
Commit ac7ac994 authored by Olivier Langella's avatar Olivier Langella
Browse files

emPAI added (Ishihama, Mann 2006) as requested by F. Rusconi

parent afb0c500
No related branches found
No related tags found
No related merge requests found
......@@ -185,6 +185,20 @@ public class Match implements Comparable<Match>, GrpProtMatch {
return value;
}
public double getEmPAI() {
// compute emPAI, Ishihama 2006
double value = Math.pow(10.0, getPAI()) - 1;
return value;
}
public double getEmPAIbyMsRun(MsRun samp) throws MSMSException {
// compute emPAI, Ishihama 2006
double value = Math.pow(10.0, getPAIbyMsRun(samp)) - 1;
return value;
}
public int get_unique_valid_peptide_number_to(MsRun samp)
throws MSMSException {
HashSet<String> sequence = new HashSet<String>();
......
......@@ -5,6 +5,7 @@ import java.util.HashSet;
import org.apache.log4j.Logger;
import fr.inra.pappso.xtandempipeline.MsException.MSMSException;
import fr.inra.pappso.xtandempipeline.class_msms.MsRun;
import fr.inra.pappso.xtandempipeline.grouping.interfaces.GrpMsSample;
import fr.inra.pappso.xtandempipeline.grouping.interfaces.GrpPeptide;
import fr.inra.pappso.xtandempipeline.grouping.interfaces.GrpProtMatch;
......@@ -178,4 +179,17 @@ public class HashSampleScanSetProt extends HashSampleScanSet {
return value;
}
public double getEmPAI() {
// compute emPAI, Ishihama 2006
double value = Math.pow(10.0, getPAI()) - 1;
return value;
}
public double getEmPAIbyMsRun(MsRun samp) throws MSMSException {
// compute emPAI, Ishihama 2006
double value = Math.pow(10.0, getPAIbyMsRun(samp)) - 1;
return value;
}
}
......@@ -35,7 +35,6 @@ import fr.inra.pappso.libodsstream.OdsDocWriter;
import fr.inra.pappso.xtandempipeline.Utils;
import fr.inra.pappso.xtandempipeline.MsException.MSMSException;
import fr.inra.pappso.xtandempipeline.class_msms.Identification;
import fr.inra.pappso.xtandempipeline.class_msms.Match;
import fr.inra.pappso.xtandempipeline.class_msms.MsRun;
import fr.inra.pappso.xtandempipeline.class_msms.MsRunSet;
import fr.inra.pappso.xtandempipeline.class_msms.Protein;
......@@ -109,11 +108,11 @@ public class OdsComparPaiOutput {
// 20121213_Cueff_065_1_C01_Xylo1 20121213_Cueff_065_1_C02_Xylo2
odsTable.writeLine();
odsTable.writeCell("Group ID");
odsTable.writeCell("Sub-group ID");
odsTable.writeCell("Top Protein ID");
odsTable.writeCell("Top Protein Description");
odsTable.writeCell("Number of proteins");
odsTable.writeEmptyCell();
odsTable.writeEmptyCell();
odsTable.writeEmptyCell();
odsTable.writeEmptyCell();
odsTable.writeEmptyCell();
MsRunSet msSampleList = ident.getMsRunSet();
msRunOrderedList = new TreeMap<String, MsRun>();
......@@ -122,6 +121,19 @@ public class OdsComparPaiOutput {
}
for (String msSampleName : msRunOrderedList.keySet()) {
odsTable.writeCell(msSampleName);
odsTable.writeEmptyCell();
}
odsTable.writeLine();
odsTable.writeCell("Group ID");
odsTable.writeCell("Sub-group ID");
odsTable.writeCell("Top Protein ID");
odsTable.writeCell("Top Protein Description");
odsTable.writeCell("Number of proteins");
for (MsRun msSample : msSampleList) {
odsTable.writeCell("PAI");
odsTable.writeCell("emPAI");
}
} catch (XMLStreamException e) {
......@@ -168,8 +180,8 @@ public class OdsComparPaiOutput {
try {
logger.debug("writeOneSubGroup begin " + group);
Match topMatch = (Match) sg.getHashSampleScanSetProtList().get(0)
.getGrpProtMatch();
// Match topMatch = (Match) sg.getHashSampleScanSetProtList().get(0)
// .getGrpProtMatch();
odsTable.writeLine();
......@@ -210,6 +222,21 @@ public class OdsComparPaiOutput {
*
* // S.append("\t"); }
*/
value = sg
.getHashSampleScanSetProtList()
.get(0)
.getEmPAIbyMsRun(
this.msRunOrderedList.get(msSampleName));
if (value > 0) {
odsTable.writeCell(value);
// S.append("\t" + value);
} else {
odsTable.writeCell("");
// S.append("\t");
}
}
logger.debug("writeOneSubGroup end");
......
......@@ -117,6 +117,7 @@ public class OdsProteinOutput {
odsTable.writeCell("Specific uniques");
odsTable.writeCell("Uniques");
odsTable.writeCell("PAI");
odsTable.writeCell("emPAI");
odsTable.writeCell("Sub-group proteins");
odsTable.writeCell("number of MS samples");
......@@ -208,6 +209,7 @@ public class OdsProteinOutput {
* top.get_spectra_numbers_to(sample) /
* top.get_protein_match().get_PAI_count()));
*/
odsTable.writeCell(hashProt.getEmPAI());
// odsTable.writeCell("Redundancy");
odsTable.writeCell(numberOfProtInSg);
......
......@@ -141,6 +141,7 @@ public class save_project {
writer.writeAttribute("validate", "" + m.isIsvalidate());
writer.writeAttribute("PAI", "" + m.getPAI());
writer.writeAttribute("emPAI", "" + m.getEmPAI());
writer.writeStartElement("protein");
writer.writeAttribute("peptide_number", ""
......
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