Skip to content

Commit

Permalink
TRI-30196 Add link to library offline use (#136)
Browse files Browse the repository at this point in the history
* TRI-30196 Add link to library offline use

* update faq text
  • Loading branch information
mike-puzon-tri authored Nov 14, 2023
1 parent 2b6a3ea commit c6b0022
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Link, Typography } from '@mui/material';
import styles from './TitleAndDescription.module.css';
import { Link as RouterLink } from 'react-router-dom';

const TitleAndDescription = () => {
return (
Expand All @@ -21,7 +22,11 @@ const TitleAndDescription = () => {
.
</Typography>
<Typography component={'div'} variant="body1" className={styles.subtext}>
A library implementing the underlying methods is available to download for offline use.
A&nbsp;
<Link component={RouterLink} to="/faq/#faq-11" rel="noopener noreferrer" target="_blank">
library
</Link>
&nbsp;implementing the underlying methods is available to download for offline use.
</Typography>
</div>
);
Expand Down
6 changes: 3 additions & 3 deletions ui/src/pages/FAQ/faq-util/faq-text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const FAQ_ITEMS: FAQText[] = [
{
question: 'How can I cite the Oxidation State Analyzer?',
//answer: 'If you would like to cite the oxidation state analyzer, please reference the following manuscript: PLACEHOLDER. You can directly export this reference to a citation manager by clicking on one of the following links: PLACEHOLDER'
answer: 'A preprint of our manuscript is available <a href="https://chemrxiv.org/engage/chemrxiv/article-details/6542a27a48dad23120de97ee" rel="noopener noreferrer" target="_blank">here </a>'
answer: 'A preprint of our manuscript is available <a href="https://chemrxiv.org/engage/chemrxiv/article-details/6542a27a48dad23120de97ee" rel="noopener noreferrer" target="_blank">here </a>.'
},
{
question: 'For what species can oxidation states be calculated?',
Expand All @@ -29,7 +29,7 @@ export const FAQ_ITEMS: FAQText[] = [
},
{
question: 'What is the likelihood score?',
answer: 'The likelihood score is a number between 0 and 1 representing the estimated relative likelihood that a particular combination of oxidation states coexists in a stable material at a particular electronic chemical potential (or equivalently, at a particular ICSD-derived reduction potential). More information is available in our <a href="https://chemrxiv.org/engage/chemrxiv/article-details/6542a27a48dad23120de97ee" rel="noopener noreferrer" target="_blank">manuscript</a>. (We will update this section when the manuscript becomes available)'
answer: 'The likelihood score is a number between 0 and 1 representing the estimated relative likelihood that a particular combination of oxidation states coexists in a stable material at a particular electronic chemical potential (or equivalently, at a particular ICSD-derived reduction potential). More information is available in our <a href="https://chemrxiv.org/engage/chemrxiv/article-details/6542a27a48dad23120de97ee" rel="noopener noreferrer" target="_blank">manuscript</a>.'
},
{
question: 'What is the optimal potential?',
Expand All @@ -53,7 +53,7 @@ export const FAQ_ITEMS: FAQText[] = [
},
{
question: 'Is the Oxidation State Analyzer available for offline use?',
answer: `The library used to evaluate oxidation states is open source and available for offline use. A description of this library and installation instructions can be found <a rel='noopener noreferrer' target='_blank' href='https://github.com/TRI-AMDD/oxidation-state-api-public'>here</a>. API documentation is generated when the library is installed, and it can also be found <a rel='noopener noreferrer' target='_blank' href='https://javadoc.oxi.matr.io/'>online</a>.`
answer: `We plan on releasing the software library used to evaluate oxidation states soon. A description of this library and installation instructions can be found <a rel='noopener noreferrer' target='_blank' href='https://github.com/TRI-AMDD/oxidation-state-api-public'>here</a>. API documentation is generated when the library is installed, and it can also be found <a rel='noopener noreferrer' target='_blank' href='https://javadoc.oxi.matr.io/'>online</a>.`
},
{
question: 'Is there an API for the online application?',
Expand Down

0 comments on commit c6b0022

Please sign in to comment.