{
if (afclient.isValidReference(pdbid))
{
- pdbseq = afclient.getSequenceRecords(pdbid);
+ pdbseq = afclient.getSequenceRecords(pdbid,processingEntry.getRetrievalUrl());
} else {
if (processingEntry.hasRetrievalUrl())
{
@Override
public AlignmentI getSequenceRecords(String queries) throws Exception
{
+ return getSequenceRecords(queries, null);
+ }
+ public AlignmentI getSequenceRecords(String queries, String retrievalUrl) throws Exception
+ {
AlignmentI pdbAlignment = null;
String chain = null;
String id = null;
return null;
}
String alphaFoldCif = getAlphaFoldCifDownloadUrl(id);
+ if (retrievalUrl != null)
+ {
+ alphaFoldCif = retrievalUrl;
+ }
try
{
{
return new PDBFeatureSettings();
}
+
}