Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ public static String getServerName() {
name = DEFAULT_PDB_FILE_SERVER;
logger.debug("Using default PDB file server {}",name);
} else {
if (!name.startsWith("http://") && !name.startsWith("ftp://")) {
if (!name.startsWith("http://") && !name.startsWith("ftp://") && !name.startsWith("https://")) {
logger.warn("Server name {} read from system property {} does not have a leading protocol string. Adding http:// to it", name, PDB_FILE_SERVER_PROPERTY);
name = "http://"+name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class SiftsChainToUniprotMapping {

static {
try {
DEFAULT_URL = new URL("ftp://ftp.ebi.ac.uk/pub/databases/msd/sifts/flatfiles/tsv/pdb_chain_uniprot.tsv.gz");
DEFAULT_URL = new URL("http://ftp.ebi.ac.uk/pub/databases/msd/sifts/flatfiles/tsv/pdb_chain_uniprot.tsv.gz");
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class SiftsMappingProvider {
private final static Logger logger = LoggerFactory.getLogger(SiftsMappingProvider.class);


private static final String EBI_SIFTS_FILE_LOCATION = "ftp://ftp.ebi.ac.uk/pub/databases/msd/sifts/xml/%s.xml.gz";
private static final String EBI_SIFTS_FILE_LOCATION = "http://ftp.ebi.ac.uk/pub/databases/msd/sifts/xml/%s.xml.gz";

private static String fileLoc = EBI_SIFTS_FILE_LOCATION;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class RCSBUpdates {

// The URL for acquiring the data
public static final String baseURL = "ftp://ftp.rcsb.org/pub/pdb/data/status/latest/";
public static final String baseURL = "http://ftp.rcsb.org/pub/pdb/data/status/latest/";

/**
*
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.