Here are the technologies used:
- Persistent Storage: Accidentally close your browser? Don't worry, your data will be right where you left it. The app will automatically store your data in your browser untill you decide to clear it.
- Input Validation: Don't worry about writing invalid inputs. The editor will highlight any invalid characters in your input and will offer to automatically remove them for you!
- Modify & Delete Existing Data
- Export your Data: Done creating? Well you can now export your data to file types like FASTA or GenBank.
Here is the visual of the file structure for the project:
│ GeneEditor.jsx
│ index.css
│ index.js
│
├───components
│ GenomeCard.jsx
│ InputComponent.jsx
│ SelectionComponent.jsx
│ SelectionMenu.jsx
│
└───data
data-set-A.json
data-set-B.json
export-formats.json
presets-data-set.json
Here is a quick overview of the most important files in there:
- GeneEditor.jsx: This is your main file. This is where all the various components come together to make the app work.
- GenomeCard.jsx: This is the component file for a Genome Card which is displayed in the GenomeBank section.
- InputComponent.jsx: This component is the combination of a Label and a selection of either a Input Box or Text Area.
- SelectionMenu.jsx: This component is the combination of a Label and a SelectionComponent. Data in the SelectionComponent can be configured using the provided options.
- SelectionComponent.jsx: This component is a helper component for SelectionMenu and holds the custom selection menu.
The project has been configured to allow for easy setup and integration. The following are key files that you can configure:
- GeneEditor.jsx: You can configure most of the app from this file. Edit the variables at the top of the file to change the provided labels and placeholder texts. [See Image Below]