Skip to content

Commit

Permalink
add SNPs to Reference table
Browse files Browse the repository at this point in the history
  • Loading branch information
cimendes committed Aug 19, 2022
1 parent a445008 commit 32d7822
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@ This project uses `npx webpack` to compile a standalone `main.js` file to be int

### Re-create conda env

The necessary dependencies for the project are provided in the [environment.yml](environment.yml) file available
in this repo.
The necessary dependencies for the project are provided in the [environment.yml](environment.yml) file available in this repo.

To recreate it, simply run:

conda env create -f environment.yml

Additionally, the js depedencies need to ne installed. Run in the root of the repo:
Additionally, the js dependencies need to be installed. Run in the root of the repo:

npm install

Expand All @@ -38,8 +37,7 @@ Run in the root of the repo:

npx webpack

This creates the `main.js` in the `dist/` directory where the command was run. It expects the `index.html` file in the
same location, created by the LMAS workflow.
This creates the `main.js` in the `dist/` directory where the command was run. It expects the `index.html` file in the same location, created by the LMAS workflow.

## Citation and Contacts

Expand Down
4 changes: 4 additions & 0 deletions src/components/ReportOverview.js
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,9 @@ class ReportOverview extends Component {
<TableCell title="Total of 'N's in basepairs aligned to to the reference">
<b>#Ns</b>
</TableCell>
<TableCell title="Total of SNPs in basepairs aligned to to the reference">
<b>#SNPs</b>
</TableCell>
</TableRow>
</TableHead>
<TableBody>
Expand Down Expand Up @@ -808,6 +811,7 @@ class ReportOverview extends Component {
<TableCell align="right">{row.NG50}</TableCell>
<TableCell align="right">{row.aligned_basepairs}</TableCell>
<TableCell align="right">{row.Ns}</TableCell>
<TableCell align="right">{row.snps}</TableCell>
</TableRow>
))}
</TableBody>
Expand Down

0 comments on commit 32d7822

Please sign in to comment.