-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
57d45f6
commit ab68c47
Showing
61 changed files
with
3,594 additions
and
1,482 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,10 @@ | ||
@article{mehta2019glad, | ||
title={GLAD: GLycan Array Dashboard, a visual analytics tool for glycan microarrays}, | ||
author={Mehta, Akul Y and Cummings, Richard D}, | ||
journal={Bioinformatics}, | ||
volume={35}, | ||
number={18}, | ||
pages={3536--3537}, | ||
year={2019}, | ||
publisher={Oxford University Press} | ||
} |
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,14 @@ | ||
@article{york2020glygen, | ||
title={GlyGen: computational and informatics resources for | ||
glycoscience}, | ||
author={York, William S and Mazumder, Raja and Ranzinger, Rene | ||
and Edwards, Nathan and Kahsay, Robel and Aoki-Kinoshita, Kiyoko | ||
F and Campbell, Matthew P and Cummings, Richard D and Feizi, Ten | ||
and Martin, Maria and others}, | ||
journal={Glycobiology}, | ||
volume={30}, | ||
number={2}, | ||
pages={72--73}, | ||
year={2020}, | ||
publisher={Oxford University Press} | ||
} |
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,11 @@ | ||
@article{cao2020glymdb, | ||
title={GlyMDB: Glycan Microarray Database and analysis toolset}, | ||
author={Cao, Yiwei and Park, Sang-Jun and Mehta, Akul Y and Cummings, Richard D and Im, | ||
Wonpil}, | ||
journal={Bioinformatics}, | ||
volume={36}, | ||
number={8}, | ||
pages={2438--2442}, | ||
year={2020}, | ||
publisher={Oxford University Press} | ||
} |
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,10 @@ | ||
@article{mehta2020glycoglyph, | ||
title={GlycoGlyph: a glycan visualizing, drawing and naming application}, | ||
author={Mehta, Akul Y and Cummings, Richard D}, | ||
journal={Bioinformatics}, | ||
volume={36}, | ||
number={11}, | ||
pages={3613--3614}, | ||
year={2020}, | ||
publisher={Oxford University Press} | ||
} |
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,8 @@ | ||
@article{kahsay2020glygen, | ||
title={GlyGen data model and processing workflow}, | ||
author={Kahsay, Robel and Vora, Jeet and Navelkar, Rahi and Mousavi, Reza | ||
and Fochtman, Brian and Holmes, Xavier and Pattabiraman, Nagarajan and | ||
Ranzinger, Rene and Mahadik, Rupali and Williamson, Tatiana and others}, | ||
journal={Bioinformatics}, | ||
year={2020} | ||
} |
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,55 @@ | ||
import React from "react"; | ||
import "bootstrap/dist/css/bootstrap.min.css"; | ||
import "react-bootstrap-table-next/dist/react-bootstrap-table2.min.css"; | ||
import Table from 'react-bootstrap/Table' | ||
|
||
/** | ||
* ClientTable component with no pagination support. Supports footer for total. | ||
*/ | ||
const ClientTable = ({ | ||
data, | ||
columns, | ||
totalName, | ||
totalColspan, | ||
total | ||
}) => { | ||
|
||
return ( | ||
<div> | ||
<Table striped bordered hover responsive size="sm"> | ||
<thead style={{ | ||
backgroundColor: "#4B85B6", | ||
color: "#FFFFFF", | ||
height: "35px" | ||
}}> | ||
<tr> | ||
{columns && ( | ||
columns.map((item) => | ||
<th>{item.name}</th> | ||
) | ||
)} | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{data && ( | ||
data.map((dataItem) => | ||
<tr> | ||
{columns && ( | ||
columns.map((item) => | ||
<td>{dataItem[item.dataField]}</td> | ||
) | ||
)} | ||
</tr> | ||
) | ||
)} | ||
<tr> | ||
<th colSpan={totalColspan}>{totalName}</th> | ||
<th>{total}</th> | ||
</tr> | ||
</tbody> | ||
</Table> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ClientTable; |
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
Oops, something went wrong.