Skip to content

Commit

Permalink
Merge pull request #105 from bioinfodlsu/hot_fix
Browse files Browse the repository at this point in the history
Add links to wiki in page description
  • Loading branch information
memgonzales authored Sep 4, 2023
2 parents 5b7653d + 2bfdaa9 commit a3ac481
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 11 deletions.
2 changes: 1 addition & 1 deletion pages/analysis/browse_loci.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
hidden=True,
children=[
html.Div([
html.P('WRITE ME')
html.P('In this page, you can genome-browse your input intervals.')
], className='analysis-intro p-3'),

html.Br(),
Expand Down
20 changes: 18 additions & 2 deletions pages/analysis/co_expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,24 @@
children=[

html.Div([
html.P('In this page, you can search for modules (a.k.a. communities, clusters) in rice co-expression networks, which are significantly enriched in the genes implicated by your GWAS. '
'Likely functions of the modules are inferred by enrichment analysis against several ontologies and pathway databases.')
html.P(
[
'In this page, you can search for modules (a.k.a. communities, clusters) in rice co-expression networks, '
'which are significantly enriched in the genes implicated by your GWAS. '
'Likely functions of the modules are inferred by enrichment analysis against several ontologies and pathway databases. Click ',
dcc.Link(
['here ', html.I(
id='demo-link',
className='fa-solid fa-up-right-from-square fa-2xs'
)],
href='https://github.com/bioinfodlsu/rice-pilaf/wiki/2.3-Co%E2%80%90expression-Network-Analysis',
target='_blank',
className='top-navbar-item'
),
' for user guide.'

]
)
], className='analysis-intro p-3'),

html.Br(),
Expand Down
16 changes: 14 additions & 2 deletions pages/analysis/lift_over.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,20 @@
children=[
html.Div([
html.P(
'In this page, you can obtain the list of genes overlapping your input intervals. '
'Optionally, you can choose genomes to lift-over your Nipponbare coordinates to.'),
['In this page, you can obtain the list of genes overlapping your input intervals. '
'Optionally, you can choose genomes to lift-over your Nipponbare coordinates to. Click ',
dcc.Link(
['here ', html.I(
id='demo-link',
className='fa-solid fa-up-right-from-square fa-2xs'
)],
href='https://github.com/bioinfodlsu/rice-pilaf/wiki/2.1-Gene-List-and-Lift%E2%80%90over',
target='_blank',
className='top-navbar-item'
),
' for user guide.'
]
)
], className='analysis-intro p-3'),

html.Br(),
Expand Down
20 changes: 17 additions & 3 deletions pages/analysis/text_mining.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,23 @@
children=[

html.Div([
html.P('In this page, you can retrieve gene names associated with traits, diseases, chemicals, etc. from a database constructed from text-mined PubMed abstracts. '
# 'Conversely, you can retrieve literature that associates your gene of interest to some phenotype.'
),
html.P(
[
'In this page, you can retrieve gene names associated with traits, diseases, chemicals, etc. '
'from a database constructed from text-mined PubMed abstracts. Click ',
dcc.Link(
['here ', html.I(
id='demo-link',
className='fa-solid fa-up-right-from-square fa-2xs'
)],
href='https://github.com/bioinfodlsu/rice-pilaf/wiki/2.2-Gene-retrieval-by-text-mining',
target='_blank',
className='top-navbar-item'
),
' for user guide.'
]

),
], className='analysis-intro p-3'),

html.Br(),
Expand Down
16 changes: 13 additions & 3 deletions pages/analysis/tf_enrich.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,19 @@
children=[
html.Div([
html.P(
'Perhaps your intervals contain variants that influence regulatory elements, for example by affecting binding affinity.'),
html.P(
'In this page, you can search for transcription factors whose binding sites overlap significantly with your intervals.')
['In this page, you can search for transcription factors whose binding sites overlap significantly with your intervals,'
'the idea being that your intervals might contain variants that affect the binding affinity of transcription factors. Click ',
dcc.Link(
['here ', html.I(
id='demo-link',
className='fa-solid fa-up-right-from-square fa-2xs'
)],
href='https://github.com/bioinfodlsu/rice-pilaf/wiki/2.4-Regulatory-Feature-Enrichment',
target='_blank',
className='top-navbar-item'
),
' for user guide.']
)
], className='analysis-intro p-3'),

html.Br(),
Expand Down

0 comments on commit a3ac481

Please sign in to comment.