-
Notifications
You must be signed in to change notification settings - Fork 0
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
Create SNP workflow #53
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
8278170
initial commit [skip ci]
rnmitchell 48bacaa
began work on snp pipeline, saving work [skip ci]
rnmitchell 3481711
added kintelligence snps to convert wrapper script
rnmitchell 241042e
fix up convert script [skip ci]
rnmitchell 863e6ae
added filtering of non-typed alleles [skip ci]
rnmitchell b2c3c36
fixing up strait razor processing [skip ci]
rnmitchell 47f5738
fixing strait razor processing [skip ci]
rnmitchell b1379ee
updated snp tests [skip ci]
rnmitchell 539001c
improved handling of filtering by snp type [skip ci]
rnmitchell e402cef
removed duplicate rows when both a and p snps included
rnmitchell 99f186c
fixed strait razor processing [skip ci]
rnmitchell ff0508c
changed forenseq kit name to sigprep [skip ci]
rnmitchell c43ca77
began writing snps format script [skip ci]
rnmitchell e7b156a
finished code for formatting evidence sigprep samples [skip ci]
rnmitchell 77eccc4
added strait razor processing [skip ci]
rnmitchell 040b43b
updated reference samples [skip ci]
rnmitchell 9dfe0a9
switched convert and format commands to be consistent with strs [skip…
rnmitchell 68c2543
filtering of untyped alleles and below AT
rnmitchell c99f319
added tests; fixed bug with having multiple references
rnmitchell 9a25dcf
added strand orientation option to STRs
rnmitchell 8ece1d7
fixed bug with specifying strand orientation; added test for using fo…
rnmitchell d80aff3
updated README
rnmitchell 0b35f52
updated manifest and setup.py
rnmitchell 2c4fffc
fixed bug with having multiple reference ids listed
rnmitchell 7160c2d
added file for test
rnmitchell 96fb563
added another file for tests
rnmitchell 4bdcb53
fixed headers
rnmitchell 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
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 |
---|---|---|
|
@@ -17,4 +17,5 @@ profile_type: "evidence" ## evidence/reference | |
data_type: "ngs" ## ce/ngs | ||
info: True ## True/False; create allele information file | ||
separate: False ##True/False; for EFM only, if True will create individual files for samples; if False, will create one file with all samples | ||
nofilters: False ##True/False; skip all filtering steps but still creates EFM/STRmix output files | ||
nofilters: False ##True/False; skip all filtering steps but still creates EFM/STRmix output files | ||
strand: uas ##uas/forward; strand orientation to report | ||
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. Realized I had never added the argument to specify strand orientation. |
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,18 @@ | ||
%YAML 1.2 | ||
--- | ||
|
||
## general settings | ||
uas: True ## True/False; if ran through UAS | ||
samp_input: "/path/to/input/directory/or/samples" ## input directory or sample; if not provided, will be cwd | ||
output: "lusstr_output" ## output file/directory name; Example: "test_030923" | ||
kit: "sigprep" ## sigprep/kintelligence | ||
|
||
## format settings | ||
types: "all" ## choices are "all", "i" (identity SNPs only), "p" (phenotype only), "a" (ancestry only) or any combination | ||
nofilter: False ## True/False if no filtering is desired; if False, will remove any allele designated as Not Typed | ||
|
||
## convert settings | ||
strand: "forward" ## forward/uas; indicates which oritentation to report the alleles for the ForenSeq SNPs; uas indicates the orientation as reported by the UAS or the forward strand | ||
references: "" ## list IDs of the samples to be run as references in EFM | ||
separate: false ## True/False; if want to separate samples into individual files for use in EFM | ||
thresh: 0.03 ## Analytical threshold value |
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
Oops, something went wrong.
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.
Copy/paste error: should be "Creating the SNP config file"
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.
lol good catch