Skip to content

Commit

Permalink
API, returning user gene size for each row in evidence table. #726
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-brandizi committed Mar 10, 2023
1 parent cdcbef2 commit 63071db
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,8 @@ public String exportEvidenceTable (
result.getInt ( "genesSize" ) + "\t" +
userGenesStr + "\t" +
result.getInt ( "qtlsSize" ) + "\t" +
result.getInt ( "ondexId" );
result.getInt ( "ondexId" ) + "\t" +
userGeneLabels.size ();
})
.collect ( Collectors.joining ( "\n" ) );

Expand All @@ -672,7 +673,7 @@ public String exportEvidenceTable (

log.info ( "Returning {} row(s) for the evidence table", tableSize.getValue () );

return "TYPE\tNAME\tSCORE\tP-VALUE\tGENES\tUSER_GENES\tQTLs\tONDEXID\n" + tableStr;
return "TYPE\tNAME\tSCORE\tP-VALUE\tGENES\tUSER_GENES\tQTLs\tONDEXID\tUSER_GENES_SIZE\n" + tableStr;

} // exportEvidenceTable()
}

0 comments on commit 63071db

Please sign in to comment.