Improve GWAS documentation#217
Merged
karenfeng merged 19 commits intoprojectglow:masterfrom Jun 8, 2020
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #217 +/- ##
=======================================
Coverage 93.63% 93.63%
=======================================
Files 88 88
Lines 4258 4258
Branches 397 397
=======================================
Hits 3987 3987
Misses 271 271 Continue to review full report at Codecov.
|
…ument-multiple-phenos Signed-off-by: Karen Feng <karen.feng@databricks.com>
…ument-multiple-phenos Signed-off-by: Karen Feng <karen.feng@databricks.com>
…ument-multiple-phenos Signed-off-by: Karen Feng <karen.feng@databricks.com>
Signed-off-by: Karen Feng <karen.feng@databricks.com>
Signed-off-by: Karen Feng <karen.feng@databricks.com>
Signed-off-by: Karen Feng <karen.feng@databricks.com>
Signed-off-by: Karen Feng <karen.feng@databricks.com>
Signed-off-by: Karen Feng <karen.feng@databricks.com>
Signed-off-by: Karen Feng <karen.feng@databricks.com>
Signed-off-by: Karen Feng <karen.feng@databricks.com>
henrydavidge
pushed a commit
to henrydavidge/glow
that referenced
this pull request
Jun 22, 2020
* Improve GWAS docs Signed-off-by: Karen Feng <karen.feng@databricks.com> * Compress Signed-off-by: Karen Feng <karen.feng@databricks.com> * Gzip Signed-off-by: Karen Feng <karen.feng@databricks.com> * Intercept Signed-off-by: Karen Feng <karen.feng@databricks.com> * lit Signed-off-by: Karen Feng <karen.feng@databricks.com> * fixup binary phenos Signed-off-by: Karen Feng <karen.feng@databricks.com> * Add tip Signed-off-by: Karen Feng <karen.feng@databricks.com> * lit Signed-off-by: Karen Feng <karen.feng@databricks.com> * comments Signed-off-by: Karen Feng <karen.feng@databricks.com> * Set up PySpark from github Signed-off-by: Karen Feng <karen.feng@databricks.com> * clone Signed-off-by: Karen Feng <karen.feng@databricks.com> * Don't specify rev Signed-off-by: Karen Feng <karen.feng@databricks.com> * Docs fixup Signed-off-by: Karen Feng <karen.feng@databricks.com> * Move setup Signed-off-by: Karen Feng <karen.feng@databricks.com> * ordering of struct Signed-off-by: Karen Feng <karen.feng@databricks.com> * enable legacy conf PYSPARK_ROW_FIELD_SORTING_ENABLED Signed-off-by: Karen Feng <karen.feng@databricks.com> Signed-off-by: Henry Davidge <hhd@databricks.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changes are proposed in this pull request?
Changes the GWAS documentation to read covariates and phenotypes from CSVs in order to better match a realistic workflow and document that the user can pass literal numpy arrays as a result of #213.
Due to incompatibility between the most recent release of PySpark 3.0 and the current Spark 3.0.1 snapshot that broke Pandas functionality, I also modified the build to create our own pip-installable
.tar.gzoff the latest Sparkbranch-3.0. This required us to create our ownsetup.pyfile, as the existing one in Spark requires jarsThis change necessitated enabling the env var
PYSPARK_ROW_FIELD_SORTING_ENABLEDdue to the changes in apache/spark#26496, which modified the row ordering and broke the Python tests when the row elements were unsorted.How is this patch tested?