import java.util.Arrays;
import java.util.Collection;
import java.util.Comparator;
-import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Locale;
import javax.swing.JTable;
+import jalview.bin.Cache;
import jalview.datamodel.DBRefEntry;
import jalview.datamodel.DBRefSource;
import jalview.datamodel.PDBEntry;
private static final String FILTER_SOURCE_PREFIX = "only_";
- private static int MAX_QLENGTH = 7820;
-
protected FTSRestRequest lastTdbRequest;
protected FTSRestClientI tdbRestClient;
public String buildQuery(SequenceI seq)
{
- boolean isPDBRefsFound = false;
- boolean isUniProtRefsFound = false;
- StringBuilder queryBuilder = new StringBuilder();
- Set<String> seqRefs = new LinkedHashSet<>();
-
- /*
- * note PDBs as DBRefEntry so they are not duplicated in query
- */
- Set<String> pdbids = new HashSet<>();
-
List<DBRefEntry> refs = seq.getDBRefs();
int ib = checkUniprotRefs(refs);
- if (ib>-1)
+ if (ib > -1)
{
return getDBRefId(refs.get(ib));
}
/**
* Searches DBRefEntry for uniprot refs
+ *
* @param seq
- * @return -2 if no uniprot refs, -1 if no canonical ref., otherwise index of Uniprot canonical DBRefEntry
+ * @return -2 if no uniprot refs, -1 if no canonical ref., otherwise index of
+ * Uniprot canonical DBRefEntry
*/
public static int checkUniprotRefs(List<DBRefEntry> refs)
{
*/
static boolean isValidSeqName(String seqName)
{
- // System.out.println("seqName : " + seqName);
String ignoreList = "pdb,uniprot,swiss-prot";
if (seqName.length() < 3)
{
{
FTSRestRequest tdbRequest = getTDBeaconsRequest(seq, wantedFields);
resultList = tdbRestClient.executeRequest(tdbRequest);
-
+
lastTdbRequest = tdbRequest;
- if (resultList!=null)
+ if (resultList != null)
{ // Query the PDB and add additional metadata
FTSRestResponse pdbResponse = fetchStructuresMetaDataFor(
getPDBQuerySource(), resultList);
- FTSRestResponse joinedResp = joinResponses(resultList, pdbResponse);
+
+ resultList = joinResponses(resultList, pdbResponse);
}
return resultList;
}
{
if (tdbEntries != null && lastTdbRequest != null)
{
- int prov_idx = lastTdbRequest.getFieldIndex("Provider");
- boolean hasPDBe=false;
+ boolean hasPDBe = false;
for (FTSData _row : tdbEntries)
{
// tdb returns custom object
tdBeaconsFilters.add(FILTER_SOURCE_PREFIX + provider);
if ("PDBe".equalsIgnoreCase(provider))
{
- hasPDBe=true;
+ hasPDBe = true;
}
}
}
if (!hasPDBe)
{
// remove the PDBe options from the available filters
- int op=0;
- while (op<xtantOptions.size())
+ int op = 0;
+ while (op < xtantOptions.size())
{
FilterOption filter = xtantOptions.get(op);
- if (filter.getQuerySource() instanceof PDBStructureChooserQuerySource)
+ if (filter
+ .getQuerySource() instanceof PDBStructureChooserQuerySource)
{
xtantOptions.remove(op);
- } else {
+ }
+ else
+ {
op++;
}
}
int typeColumnIndex = restable.getColumn("Provider").getModelIndex();
int humanUrl = restable.getColumn("Page URL").getModelIndex();
int modelformat = restable.getColumn("Model Format").getModelIndex();
- int categoryColumnIndex = restable.getColumn("Model Category")
- .getModelIndex();
final int up_start_idx = restable.getColumn("Uniprot Start")
.getModelIndex();
final int up_end_idx = restable.getColumn("Uniprot End")
: -1;
int tdbTitle_idx = getLastFTSRequest().getFieldIndex("Title");
- List<FTSData> joinedRows = new ArrayList<FTSData>();
for (final FTSData row : upResponse.getSearchSummary())
{
String id = (String) row.getSummaryData()[idx_modelId];
Collection<FTSData> discoveredStructuresSet)
{
int idColumnIndex = restable.getColumn("Model id").getModelIndex();
-
- String modelId = (String) restable.getValueAt(selectedRow, idColumnIndex);
- for (FTSData row:discoveredStructuresSet)
+
+ String modelId = (String) restable.getValueAt(selectedRow,
+ idColumnIndex);
+ for (FTSData row : discoveredStructuresSet)
{
- if (row instanceof TDB_FTSData && ((TDB_FTSData)row).getModelId().equals(modelId))
+ if (row instanceof TDB_FTSData
+ && ((TDB_FTSData) row).getModelId().equals(modelId))
{
- return ((TDB_FTSData)row);
+ return ((TDB_FTSData) row);
}
}
return null;