use of de.bioforscher.jstructure.graph.ReconstructionContactMap in project jstructure by JonStargaryen.
the class A04_CreateRmsdVsCoveragePlot method handleChain.
private static void handleChain(ExplorerChain explorerChain) {
logger.info("handling chain {}", explorerChain.getStfId());
try {
Chain nativeChain = explorerChain.getChain();
Path nativeChainPath = Files.createTempFile("nativechain-", ".pdb");
Files.write(nativeChainPath, nativeChain.getPdbRepresentation().getBytes());
ReconstructionContactMap nativeContactMap = ReconstructionContactMap.createReconstructionContactMap(nativeChain, ContactDefinitionFactory.createAlphaCarbonContactDefinition(8.0));
List<AminoAcid> aminoAcids = nativeChain.getAminoAcids();
List<Pair<AminoAcid, AminoAcid>> contacts = nativeContactMap.getLongRangeContacts();
int numberNativeLongRangeContacts = contacts.size();
List<ReconstructionContactMap> reconstructionContactMaps = new ArrayList<>();
for (int coverage = 5; coverage <= 100; coverage = coverage + 5) {
int numberOfContactsToSelect = (int) Math.round(0.01 * coverage * numberNativeLongRangeContacts);
for (int run = 0; run < REDUNDANCY; run++) {
Collections.shuffle(contacts);
List<Pair<AminoAcid, AminoAcid>> selectedContacts = contacts.subList(0, numberOfContactsToSelect);
ReconstructionContactMap contactMap = new ReconstructionContactMap(aminoAcids, selectedContacts, nativeContactMap.getContactDefinition());
contactMap.setName("p" + coverage + "-" + (run + 1));
reconstructionContactMaps.add(contactMap);
}
}
Map<String, List<Future<ReconstructionResult>>> reconstructionFutures = new HashMap<>();
for (ReconstructionContactMap contactMap : reconstructionContactMaps) {
String name = contactMap.getName().split("-")[0];
logger.info("handling contact map with coverage {}", name);
if (!reconstructionFutures.containsKey(name)) {
reconstructionFutures.put(name, new ArrayList<>());
}
List<Future<ReconstructionResult>> bin = reconstructionFutures.get(name);
bin.add(executorService.submit(new ConfoldServiceWorker("/home/sb/programs/confold_v1.0/confold.pl", contactMap.getSequence(), contactMap.getSecondaryStructureElements(), contactMap.getCaspRRRepresentation(), nativeContactMap.getConfoldRRType())));
}
for (Map.Entry<String, List<Future<ReconstructionResult>>> reconstructionFuture : reconstructionFutures.entrySet()) {
try {
String name = reconstructionFuture.getKey();
List<Chain> reconstructions = reconstructionFuture.getValue().stream().map(future -> {
try {
return future.get();
} catch (Exception e) {
throw new ComputationException(e);
}
}).map(ReconstructionResult::getChains).flatMap(Collection::stream).collect(Collectors.toList());
List<TMAlignAlignmentResult> alignmentResults = new ArrayList<>();
List<Path> tmpFiles = new ArrayList<>();
for (Chain reconstructedChain : reconstructions) {
Path reconstructPath = Files.createTempFile("confoldservice-recon", ".pdb");
tmpFiles.add(reconstructPath);
Files.write(reconstructPath, reconstructedChain.getPdbRepresentation().getBytes());
alignmentResults.add(TM_ALIGN_SERVICE.process(new String[] { "/home/sb/programs/tmalign", nativeChainPath.toFile().getAbsolutePath(), reconstructPath.toFile().getAbsolutePath() }));
}
if (alignmentResults.isEmpty()) {
throw new ComputationException("tmalign did not yield any alignments");
}
for (TMAlignAlignmentResult alignmentResult : alignmentResults) {
double rmsd = alignmentResult.getRootMeanSquareDeviation().getScore();
String line = explorerChain.getStfId() + "," + name.replace("p", "") + "," + rmsd;
logger.info(line);
fileWriter.write(line + System.lineSeparator());
fileWriter.flush();
}
// cleanup
for (Path tmpFile : tmpFiles) {
Files.delete(tmpFile);
}
} catch (IOException e) {
throw new ComputationException(e);
}
}
} catch (IOException | AlignmentException e) {
throw new ComputationException(e);
}
}
use of de.bioforscher.jstructure.graph.ReconstructionContactMap in project jstructure by JonStargaryen.
the class A04A_CreatePyMolRendering method handleChain.
private static void handleChain(ExplorerChain explorerChain) {
logger.info("handling chain {}", explorerChain.getStfId());
try {
Chain nativeChain = explorerChain.getChain();
Path nativeChainPath = Files.createTempFile("nativechain-", ".pdb");
Files.write(nativeChainPath, nativeChain.getPdbRepresentation().getBytes());
ReconstructionContactMap nativeContactMap = ReconstructionContactMap.createReconstructionContactMap(nativeChain, ContactDefinitionFactory.createAlphaCarbonContactDefinition(8.0));
List<AminoAcid> aminoAcids = nativeChain.getAminoAcids();
List<Pair<AminoAcid, AminoAcid>> contacts = nativeContactMap.getLongRangeContacts();
int numberNativeLongRangeContacts = contacts.size();
List<ReconstructionContactMap> reconstructionContactMaps = new ArrayList<>();
IntStream.of(5, 30, 100).forEach(coverage -> {
int numberOfContactsToSelect = (int) Math.round(0.01 * coverage * numberNativeLongRangeContacts);
for (int run = 0; run < REDUNDANCY; run++) {
Collections.shuffle(contacts);
List<Pair<AminoAcid, AminoAcid>> selectedContacts = contacts.subList(0, numberOfContactsToSelect);
ReconstructionContactMap contactMap = new ReconstructionContactMap(aminoAcids, selectedContacts, nativeContactMap.getContactDefinition());
contactMap.setName("p" + coverage + "-" + (run + 1));
reconstructionContactMaps.add(contactMap);
}
});
Map<String, List<Future<ReconstructionResult>>> reconstructionFutures = new HashMap<>();
for (ReconstructionContactMap contactMap : reconstructionContactMaps) {
String name = contactMap.getName().split("-")[0];
logger.info("handling contact map with coverage {}", name);
if (!reconstructionFutures.containsKey(name)) {
reconstructionFutures.put(name, new ArrayList<>());
}
List<Future<ReconstructionResult>> bin = reconstructionFutures.get(name);
bin.add(executorService.submit(new ConfoldServiceWorker("/home/sb/programs/confold_v1.0/confold.pl", contactMap.getSequence(), contactMap.getSecondaryStructureElements(), contactMap.getCaspRRRepresentation(), nativeContactMap.getConfoldRRType())));
}
for (Map.Entry<String, List<Future<ReconstructionResult>>> reconstructionFuture : reconstructionFutures.entrySet()) {
try {
String name = reconstructionFuture.getKey();
List<Chain> reconstructions = reconstructionFuture.getValue().stream().map(future -> {
try {
return future.get();
} catch (Exception e) {
throw new ComputationException(e);
}
}).map(ReconstructionResult::getChains).flatMap(Collection::stream).collect(Collectors.toList());
for (Chain reconstructedChain : reconstructions) {
Files.write(OUTPUT_PATH.resolve(name + ".pdb"), reconstructedChain.getPdbRepresentation().getBytes());
}
} catch (IOException e) {
throw new ComputationException(e);
}
}
} catch (IOException e) {
throw new ComputationException(e);
}
}
use of de.bioforscher.jstructure.graph.ReconstructionContactMap in project jstructure by JonStargaryen.
the class BaselineReconstruction method computeBaselinePerformance.
private void computeBaselinePerformance(List<Chain> reconstructions) throws AlignmentException, IOException {
List<TMAlignAlignmentResult> alignmentResults = new ArrayList<>();
List<ReconstructionContactMap> reconstructionContactMaps = new ArrayList<>();
List<Path> tmpFiles = new ArrayList<>();
if (reconstructions.isEmpty()) {
throw new ComputationException("reconstruction did not yield any reconstructs");
}
for (Chain reconstructedChain : reconstructions) {
Path reconstructPath = Files.createTempFile("confoldservice-recon", ".pdb");
tmpFiles.add(reconstructPath);
Files.write(reconstructPath, reconstructedChain.getPdbRepresentation().getBytes());
alignmentResults.add(TM_ALIGN_SERVICE.process(new String[] { tmalignPath, referenceChainPath.toFile().getAbsolutePath(), reconstructPath.toFile().getAbsolutePath() }));
reconstructionContactMaps.add(ReconstructionContactMap.createReconstructionContactMap(reconstructedChain, fullMap.getContactDefinition()));
}
if (alignmentResults.isEmpty()) {
throw new ComputationException("tmalign did not yield any alignments");
}
averageRmsd = alignmentResults.stream().map(TMAlignAlignmentResult::getRootMeanSquareDeviation).mapToDouble(RootMeanSquareDeviation::getScore).average().getAsDouble();
averageTmScore = alignmentResults.stream().map(TMAlignAlignmentResult::getTemplateModelingScore1).mapToDouble(TemplateModelingScore::getScore).average().getAsDouble();
averageQ = reconstructionContactMaps.stream().mapToDouble(reconstructContactMap -> computeQ(fullMap, reconstructContactMap)).average().getAsDouble();
logger.info("baseline reconstruction {} - average RMSD: {}, average TM-score: {}, average Q: {}", iteration, StandardFormat.format(averageRmsd), StandardFormat.format(averageTmScore), StandardFormat.format(averageQ));
// cleanup
for (Path tmpFile : tmpFiles) {
Files.delete(tmpFile);
}
}
use of de.bioforscher.jstructure.graph.ReconstructionContactMap in project jstructure by JonStargaryen.
the class BaselineReconstruction method createContactTogglingReconstruction.
public ContactTogglingReconstruction createContactTogglingReconstruction(Pair<AminoAcid, AminoAcid> contactToToggle, int counter, int numberOfCombinations) {
List<Pair<AminoAcid, AminoAcid>> contacts = new ArrayList<>(sampledMap.getLongRangeContacts());
boolean contactWasRemoved = determineIfMapContainsContact(sampledMap, contactToToggle);
if (contactWasRemoved) {
contacts.removeIf(pair -> pairsMatchByResidueIdentifier(pair, contactToToggle));
} else {
contacts.add(contactToToggle);
}
return new ContactTogglingReconstruction(this, counter, numberOfCombinations, contactToToggle, contactWasRemoved, new ReconstructionContactMap(sampledMap.getAminoAcids(), contacts, fullMap.getContactDefinition()));
}
Aggregations