Skip to content
Snippets Groups Projects
Commit 0b368ef8 authored by Alexander Rose's avatar Alexander Rose
Browse files

removed bcif-static option from structure download action

parent f398993d
No related branches found
No related tags found
No related merge requests found
......@@ -61,10 +61,6 @@ const DownloadStructure = StateAction.build({
}, { pivot: 'id' }),
options
}, { isFlat: true, label: 'PDBDEV' }),
'bcif-static': PD.Group({
id: PD.Text('1tqn', { label: 'PDB Id(s)', description: 'One or more comma/space separated PDB ids.' }),
options
}, { isFlat: true, label: 'BinaryCIF (static PDBe Updated)' }),
'swissmodel': PD.Group({
id: PD.Text('Q9Y2I8', { label: 'UniProtKB AC(s)', description: 'One or more comma/space separated ACs.' }),
options
......@@ -119,10 +115,6 @@ const DownloadStructure = StateAction.build({
);
asTrajectory = !!src.params.options.asTrajectory;
break;
case 'bcif-static':
downloadParams = getDownloadParams(src.params.id, id => `https://webchem.ncbr.muni.cz/ModelServer/static/bcif/${id.toLowerCase()}`, id => `BinaryCIF: ${id}`, true);
asTrajectory = !!src.params.options.asTrajectory;
break;
case 'swissmodel':
downloadParams = getDownloadParams(src.params.id, id => `https://swissmodel.expasy.org/repository/uniprot/${id.toUpperCase()}.pdb`, id => `SWISS-MODEL: ${id}`, false);
asTrajectory = !!src.params.options.asTrajectory;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment