Skip to content

Commit

Permalink
Update the docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
yjcyxky committed Mar 10, 2024
1 parent 1729a00 commit ebf7520
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions studio/public/README/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ Once you are logged in, you can start predicting interactions between genes, dru
There are several operations you can do on the knowledge graph. You can right-click on a node, right-click on a edge, right-click on a canvas to do different operations for the nodes, edges, and graph respectively. If you would like to know more common operations, you can click the button with a question mark on the top of the page to see the help document. This button is on the right side of the "Upload / Query" button.

<div style="display: flex; justify-content: center; flex-direction: column; align-items: center; margin-bottom: 20px;">
<img src="https://github.com/yjcyxky/biomedgps/blob/dev/studio/public/README/images/step3-explain.png?raw=true" width="60%" />
<img src="https://github.com/yjcyxky/biomedgps/blob/master/studio/public/README/images/step3-explain.png?raw=true" width="60%" />
</div>

<div style="display: flex; justify-content: center; flex-direction: column; align-items: center; margin-bottom: 20px;">
<img src="https://github.com/yjcyxky/biomedgps/blob/dev/studio/public/README/images/step3-explain-right-click-node.png?raw=true" width="60%" />
<img src="https://github.com/yjcyxky/biomedgps/blob/master/studio/public/README/images/step3-explain-right-click-node.png?raw=true" width="60%" />
</div>

<div style="display: flex; justify-content: center; flex-direction: column; align-items: center; margin-bottom: 20px;">
<img src="https://github.com/yjcyxky/biomedgps/blob/dev/studio/public/README/images/step3-explain-right-click-edge.png?raw=true" width="60%" />
<img src="https://github.com/yjcyxky/biomedgps/blob/master/studio/public/README/images/step3-explain-right-click-edge.png?raw=true" width="60%" />
</div>

<div style="display: flex; justify-content: center; flex-direction: column; align-items: center; margin-bottom: 20px;">
<img src="https://github.com/yjcyxky/biomedgps/blob/dev/studio/public/README/images/step3-explain-common-operations.png?raw=true" width="60%" />
<img src="https://github.com/yjcyxky/biomedgps/blob/master/studio/public/README/images/step3-explain-common-operations.png?raw=true" width="60%" />
</div>

NOTE: Video Tutorial is coming soon!
Expand Down
7 changes: 7 additions & 0 deletions studio/src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ const GlobalHeaderRight: React.FC<GlobalHeaderRightProps> = (props) => {
key: 'user',
icon: <UserOutlined />,
},
{
label: 'v0.3.1',
key: 'version',
icon: <FieldTimeOutlined />
},
{
label: 'About',
key: 'about',
Expand All @@ -89,6 +94,8 @@ const GlobalHeaderRight: React.FC<GlobalHeaderRightProps> = (props) => {
history.push('/help')
} else if (item.key === 'changelog') {
history.push('/changelog')
} else if (item.key === 'version') {
window.open('https://github.com/open-prophetdb/biomedgps/releases', '_blank');
}
};

Expand Down

0 comments on commit ebf7520

Please sign in to comment.