-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* disable metadata downloads for alpha site * Move group report styles to separate file * Set B.1.617.2 to default active group * move model code into own function * Fix tree legend overflows * bump to beta3 * Add environment file for cloudsql version, update instructions in docker files * Default to connection pool of size 20, if not defined * Order residues for proper residue querying in structural viewer. Closes #378 * bump to v2.2.1
- Loading branch information
Showing
13 changed files
with
88 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
POSTGRES_USER=... | ||
POSTGRES_PASSWORD=... | ||
POSTGRES_HOST=/cloudsql/[PROJECT ID]:us-central1:[SQL INSTANCE ID] | ||
POSTGRES_DB=[DB_NAME] | ||
GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials | ||
CLOUDSQL_CONNECTION_NAME=[PROJECT ID]:us-central1:[SQL INSTANCE ID] | ||
CONFIGFILE=config/[CONFIGFILE.yml] |
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
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
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,54 @@ | ||
import styled from 'styled-components'; | ||
|
||
const MEDIAWIDTH = '1475px'; | ||
|
||
export const GroupReportTabContainer = styled.div` | ||
display: grid; | ||
grid-template-rows: auto; | ||
grid-template-columns: 250px repeat(2, minmax(100px, 1fr)); | ||
max-height: 100vh; | ||
@media (max-width: ${MEDIAWIDTH}) { | ||
grid-template-rows: auto; | ||
grid-template-columns: 250px minmax(100px, 1fr); | ||
overflow-y: auto; | ||
} | ||
`; | ||
|
||
export const GroupTreePlotContainer = styled.div` | ||
grid-row: 1 / 3; | ||
grid-column: 1; | ||
@media (max-width: ${MEDIAWIDTH}) { | ||
grid-row: 1 / 4; | ||
} | ||
`; | ||
|
||
export const MutationsContainer = styled.div` | ||
grid-column: 2; | ||
grid-row: 1 / 3; | ||
@media (max-width: ${MEDIAWIDTH}) { | ||
grid-row: 2; | ||
} | ||
`; | ||
|
||
export const VOCContainer = styled.div` | ||
grid-column: 3; | ||
grid-row: 1; | ||
@media (max-width: ${MEDIAWIDTH}) { | ||
grid-column: 2; | ||
grid-row: 1; | ||
} | ||
`; | ||
|
||
export const StructuralViewerContainer = styled.div` | ||
grid-column: 3; | ||
grid-row: 2; | ||
@media (max-width: ${MEDIAWIDTH}) { | ||
grid-column: 2; | ||
grid-row: 3; | ||
} | ||
`; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export const version = '2.2.0-beta2'; | ||
export const version = '2.2.1'; |