-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GSoC documentation issue #111 #118
Open
Farreeda
wants to merge
5
commits into
JuliaHealth:dev
Choose a base branch
from
Farreeda:GSoC
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,25 @@ | ||
@def title = "JuliaHealth - Google Summer of Code" | ||
@def hasmath = true | ||
|
||
|
||
#### GSoC 2023 | ||
-------------------------------------- | ||
## JuliaHealth's Tools for Patient-Level Predictions: Strengthening Capacity and Innovation | ||
|
||
|
||
[proposal] (https://docs.google.com/document/d/18-p6VG6MwvzFdyA45MvXyqxOLVEByFP6D_gff9-E1XE/edit#heading=h.zgq6k5hzq0t) | ||
|
||
__Student: Farida Abdelazeez__ | ||
##### Email : [email protected] | ||
**Mentor: Jacob Zelko** | ||
##### Email : [email protected] | ||
|
||
|
||
### Project Summary | ||
|
||
Working with the OMOP CDM (Observational Medical Outcomes Partnership Common Data Model) involves handling large datasets that require a set of tools for extracting the necessary data efficiently. The first part of the project focuses on improving JuliaHealth's infrastructure by increasing the range of tools available to users. This involves enabling connections to various databases, and working with observational health data. Our second goal is to leverage the capacity built in the previous phase to develop a comprehensive framework for patient-level prediction. This framework will predict patient cohort outcomes with given treatments and will be tested on the mimic iii data, and potentially on real aggregated and anonymized patient data. | ||
|
||
This Jupyter notebook shows the flow of creating a prediction model from OMOP CDM using developed packages through the program. You can find it on juliahealth website - the tutorial section. | ||
|
||
|
||
Poster in [JuliaCon](/assets/JuliaCon-gsoc.pdf) 2023 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great idea including this! |
Binary file not shown.
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 |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
<li><a href="https://github.com/JuliaHealth">GitHub</a></li> | ||
<li><a href="/related-organizations">Related Organizations</a></li> | ||
<li><a href="/meeting-notes">Meeting Notes</a></li> | ||
<li><a href="/GSoC-program">GSoC Program</a></li> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you change this to just "GSoC"? |
||
</ul> | ||
<img src="/assets/hamburger.svg" id="menu-icon"> | ||
</nav> | ||
|
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,37 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
This is based on Yandex's https://yandex.com/support/zen/website/rss-modify.html | ||
|
||
The scope of this segment is the GLOBAL scope (variables defined in config.md). | ||
For instance 'website_url' or 'website_description'. | ||
|
||
Notes: | ||
* namespaces (xmlns): https://validator.w3.org/feed/docs/howto/declare_namespaces.html | ||
* best practices: https://www.rssboard.org/rss-profile | ||
* fd2rss convers markdown to html and fixes or removes relative links | ||
* fd_rss_feed_url is built out of {website_url}/{rss_file}.xml, you can change the | ||
rss_file variable in your config file if you want to use something different than 'feed' | ||
--> | ||
<rss version="2.0" | ||
xmlns:content="http://purl.org/rss/1.0/modules/content/" | ||
xmlns:dc="http://purl.org/dc/elements/1.1/" | ||
xmlns:media="http://search.yahoo.com/mrss/" | ||
xmlns:atom="http://www.w3.org/2005/Atom" | ||
xmlns:georss="http://www.georss.org/georss"> | ||
|
||
<channel> | ||
<title> | ||
<![CDATA[ {{fd2rss website_title}} ]]> | ||
</title> | ||
<link> {{website_url}} </link> | ||
<description> | ||
<![CDATA[ {{fd2rss website_description}} ]]> | ||
</description> | ||
<atom:link | ||
href="{{fd_rss_feed_url}}" | ||
rel="self" | ||
type="application/rss+xml" /> | ||
<!-- | ||
* items will be added here in chronological order | ||
* the channel will then be closed | ||
--> |
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,60 @@ | ||
<!-- | ||
This is based on Yandex's https://yandex.com/support/zen/website/rss-modify.html | ||
|
||
The scope of this segment is the LOCAL scope (page variables). For instance 'rss_title'. | ||
|
||
Notes: | ||
* the local var rss_description (or rss) *must* be given otherwise the item | ||
is not generated. | ||
* rss_title if not given is inferred from page title | ||
* rss_pubdate if not given is inferred from the date of last modification | ||
* the full content is not added by default but can be if the variable rss_full_content | ||
is set to true (either globally or locally). | ||
* RFC822 or RFC1123 is a date format required by RSS. | ||
* there is debate about supporting one or several enclosures | ||
(see https://www.rssboard.org/rss-profile#element-channel-item-enclosure). | ||
We use the conservative 'only one' approach by default but you could tweak this by | ||
defining your own `rss_enclosures` variable with a list of string and use that. | ||
--> | ||
<item> | ||
<title> | ||
<![CDATA[ {{fd2rss rss_title}} ]]> | ||
</title> | ||
<link> {{fd_full_url}} </link> | ||
<guid> {{fd_full_url}} </guid> | ||
<description> | ||
<![CDATA[ {{fd2rss rss_description}} ]]> | ||
</description> | ||
|
||
<!-- note that fd_page_html is already HTML, so we don't use fd2rss here --> | ||
{{if rss_full_content}} | ||
<content:encoded> | ||
<![CDATA[ {{fix_relative_links fd_page_html}} ]]> | ||
</content:encoded> | ||
{{end}} | ||
|
||
<!-- RFC1123 enforces a RSS-compliant date formatting --> | ||
<pubDate>{{RFC822 rss_pubdate}}</pubDate> | ||
|
||
<!-- if given this must be an email, see specs --> | ||
{{isnotempty rss_author}} | ||
<author> {{rss_author}} </author> | ||
{{end}} | ||
{{isnotempty author}} | ||
<atom:author> | ||
<atom:name>{{author}}</atom:name> | ||
</atom:author> | ||
{{end}} | ||
|
||
{{isnotempty rss_category}} | ||
<category> {{rss_category}} </category> | ||
{{end}} | ||
|
||
{{isnotempty rss_comments}} | ||
<comments> {{rss_comments}} </comments> | ||
{{end}} | ||
|
||
{{isnotempty rss_enclosure}} | ||
<enclosure> {{rss_enclosure}} </enclosure> | ||
{{end}} | ||
</item> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks pretty great! Could you add another subsection that lists accomplishments during the fellowship? You could have this as a bulleted list.