-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
2,844 additions
and
1,571 deletions.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: chiimp | ||
Title: Computational, High-throughput Individual Identification through Microsatellite Profiling | ||
Version: 0.1.0 | ||
Version: 0.2.0 | ||
Authors@R: person("Jesse", "Connell", email = "[email protected]", role = c("aut", "cre")) | ||
Description: An R package to analyze microsatellites in high-throughput sequencing datasets. | ||
Depends: R (>= 3.2.3) | ||
|
@@ -11,12 +11,10 @@ Imports: | |
argparser (>= 0.4), | ||
dnaplotr (>= 0.1), | ||
dnar (>= 0.1), | ||
dplyr (>= 0.7.4), | ||
graphics (>= 3.2.3), | ||
grDevices (>= 3.2.3), | ||
kableExtra (>= 0.2.1.9000), | ||
knitr (>= 1.16), | ||
magrittr (>= 1.5), | ||
methods (>= 3.2.3), | ||
msa (>= 1.2.1), | ||
openssl (>= 0.9.6), | ||
|
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# chiimp 0.2.0 | ||
|
||
* Restructured code to avoid analyzing multiplexed samples more than once ([#3]). | ||
* Reorganized output into per-sequence-file (full) and per-sample (filtered) | ||
sections ([#5]). | ||
* Added a new saving function, `save_seqfile_data`, to save a directory tree | ||
of per-sequence-file output files starting from the first shared directory | ||
in the input file paths. | ||
* Moved functionality from `analyze_sample` into a new `analyze_seqs` | ||
function to be used as a separate step (enabling shared processing between | ||
multiplexed samples in a single data file for [#3]). | ||
* Split data list from `analyze_dataset` output into two separate lists | ||
called files and samples. | ||
* Added sequence name matching to `analyze_dataset`. The summary data frame | ||
now has Allele1Name and Allele2Name columns, and the sample data frames a | ||
SeqName column, matching any sequence recognized as a called allele from any | ||
sample in the current analysis (or a previous analysis if the allele table | ||
is provided). | ||
* Improved `histogram` function to recognize more categories of unique | ||
sequences including sequences called as alleles elsewhere, and return the | ||
counts-by-length data by category in a list. | ||
* Removed `histogram2` to centralize functionality in `histogram`. | ||
* Fixed bugs causing failure of report generation for completely blank | ||
dataset analysis results ([#7]). | ||
* Removed `summarize_sample_by_length` function. | ||
* Clarified behavior of `summarize_sample` functions to allow any combination | ||
of TRUE/FALSE values in the Ambiguous/Stutter/Artifact entries. Previously | ||
only the first (highest-count) case would be flagged. | ||
* Added features to track and filter ambiguous sequences ([#4]). | ||
* Added column named Ambiguous to `analyze_sample` output to flag sequences | ||
with non-ACTG characters. | ||
* Added entry named Ambiguous to `summarize_sample` output to track | ||
filtering of sequences with non-ACTG characters. | ||
|
||
[#7]: https://github.com/ShawHahnLab/chiimp/issues/7 | ||
[#5]: https://github.com/ShawHahnLab/chiimp/issues/5 | ||
[#4]: https://github.com/ShawHahnLab/chiimp/issues/4 | ||
[#3]: https://github.com/ShawHahnLab/chiimp/issues/3 | ||
|
||
# chiimp 0.1.0 | ||
|
||
* Initial release |
Oops, something went wrong.