-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
123 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Help.js | ||
*/ | ||
|
||
|
||
import React from 'react' | ||
import pure from 'recompose/pure' | ||
import cx from 'classname' | ||
|
||
import Icon from './Icon' | ||
|
||
import './Help.scss' | ||
|
||
|
||
function Help(props) { | ||
return ( | ||
<div className='Help'> | ||
<div className='Help__content'> | ||
<h1 className='Help__title'>Help</h1> | ||
|
||
<h2>What is this tool?</h2> | ||
<p className='Help__text'> | ||
The Circular DNA Re-aligner allows you to provide your bacterial DNA sequence | ||
and a desired start sequence, and realign the DNA sequence to match this start. | ||
It also reverse your DNA sequence if it appears to be in the opposite direction | ||
to your start sequence. | ||
</p> | ||
|
||
<h2>How does it work?</h2> | ||
<p className='Help__text'> | ||
First, you must provide your input DNA sequences, either as FASTA files, or as NCBI | ||
accession numbers. <br/> | ||
Second, you need to provide your start sequence, either from a text file, or in the | ||
text input. <br/> | ||
Third, click <code>Re-Align</code> and let the tool run. <br/> | ||
Lastly, you can download the files that were realigned. | ||
</p> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default pure(Help) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@import '../styles/_variables.scss'; | ||
|
||
.Help { | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
// align-items: center; | ||
justify-content: center; | ||
padding-top: 20%; | ||
} | ||
.Help__content { | ||
width: 600px; | ||
text-align: left; | ||
} | ||
.Help__title { | ||
text-align: center; | ||
} | ||
.Help__text { | ||
font-size: 1.1rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters