Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Molstar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michal Malý
Molstar
Commits
540727b2
Commit
540727b2
authored
6 years ago
by
Alexander Rose
Browse files
Options
Downloads
Patches
Plain Diff
name fix
parent
5c085bea
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/apps/structure-info/volume.ts
+2
-2
2 additions, 2 deletions
src/apps/structure-info/volume.ts
with
2 additions
and
2 deletions
src/apps/structure-info/volume.ts
+
2
−
2
View file @
540727b2
...
@@ -8,7 +8,7 @@ import * as fs from 'fs'
...
@@ -8,7 +8,7 @@ import * as fs from 'fs'
import
*
as
argparse
from
'
argparse
'
import
*
as
argparse
from
'
argparse
'
import
*
as
util
from
'
util
'
import
*
as
util
from
'
util
'
import
{
VolumeData
,
parse
DensityServerData
,
VolumeIsoValue
}
from
'
mol-model/volume
'
import
{
VolumeData
,
volumeFrom
DensityServerData
,
VolumeIsoValue
}
from
'
mol-model/volume
'
import
{
downloadCif
}
from
'
./helpers
'
import
{
downloadCif
}
from
'
./helpers
'
import
CIF
from
'
mol-io/reader/cif
'
import
CIF
from
'
mol-io/reader/cif
'
import
{
DensityServer_Data_Database
}
from
'
mol-io/reader/cif/schema/density-server
'
;
import
{
DensityServer_Data_Database
}
from
'
mol-io/reader/cif/schema/density-server
'
;
...
@@ -26,7 +26,7 @@ type Volume = { source: DensityServer_Data_Database, volume: VolumeData }
...
@@ -26,7 +26,7 @@ type Volume = { source: DensityServer_Data_Database, volume: VolumeData }
async
function
getVolume
(
url
:
string
):
Promise
<
Volume
>
{
async
function
getVolume
(
url
:
string
):
Promise
<
Volume
>
{
const
cif
=
await
downloadCif
(
url
,
true
);
const
cif
=
await
downloadCif
(
url
,
true
);
const
data
=
CIF
.
schema
.
densityServer
(
cif
.
blocks
[
1
]);
const
data
=
CIF
.
schema
.
densityServer
(
cif
.
blocks
[
1
]);
return
{
source
:
data
,
volume
:
await
parse
DensityServerData
(
data
).
run
()
};
return
{
source
:
data
,
volume
:
await
volumeFrom
DensityServerData
(
data
).
run
()
};
}
}
function
print
(
data
:
Volume
)
{
function
print
(
data
:
Volume
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment