Update combine_PRS.R#4
Open
soren944 wants to merge 6 commits intobuutrg:mainfrom
Open
Conversation
I came across PGS files with a alternate column name "#IID" instead of "IID". Instead of manually changing the column name for every PGS file it will now recognize altered names. The only prerequisite is that the IID column's alternate name contains the pattern "IID". The name is subsequently change to "IID" only if there is not a complete pattern match to allow for IID merging later in the script.
The current script cannot handle multiple PGS score files that share the same name for SUM column. Created a new option to specify the new names for the columns. I also altered the sub-setting of trait specific PGS to reflect the change in names. Added an error statement to indicate whether the new name list does not have the same length as the number of PGS scores under consideration.
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.
I came across PGS files with an alternate column name "#IID" instead of "IID". Instead of manually changing the column name for every PGS file it will now recognize altered names. The only prerequisite is that the IID column's alternate name contains the pattern "IID". The name is subsequently changed to "IID" only if there is not a complete pattern match to allow for IID merging later in the script.