-
Notifications
You must be signed in to change notification settings - Fork 175
Add BISCUIT #186
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
Add BISCUIT #186
Changes from 49 commits
c003c6e
4323546
6717545
add54f3
a5d4f4a
42c3f95
ff55790
ed1203f
81946ea
2b5d492
0c0d93d
10c0f9b
7b71df0
8aee069
e0e3a09
c8775cf
2d691dc
46b8b7c
f9f799e
2c6b12a
b7d3e8f
cb95f33
8472d46
532e997
1f4dfd5
ac62a93
a76e7d5
f1e5597
f972b35
e6c9083
842ae99
9aae954
50ceb39
db60919
41d48d5
48d2716
962995e
6efc3d6
37f01fc
2f9aa2b
022eaff
68bbb5b
3a4fc81
bd2615a
f2f0cd1
9031da4
020b0e1
b0735e4
63f9202
310e45a
b9cd416
b3a9729
4a7415f
72a0dae
9329e42
16b78d9
e980520
439ccd8
7ae0ffa
724d36c
6c37778
4ab3f8a
26de2f1
d3bff3a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
|
|
||
| # nf-core/methylseq | ||
|
|
||
| ## v1.6dev - [date] | ||
|
|
@@ -22,9 +23,18 @@ The parameter still works in the same way as before. | |
| * Added a `-profile test_full` config for running the pipeline with a full-size test dataset | ||
| * See [the config file](https://github.com/nf-core/methylseq/blob/dev/conf/test_full.config) for details | ||
| * This will be used for automated release tests on AWS, results browsable on the website | ||
| * Added Picard CollectInsertSizeMetrics and Picard CollectGcBiasMetrics | ||
| * Improved qulimap and preseq by adding `samtools sort` and `samtools index` step in the Bismark aligner | ||
|
Member
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. I have a vague memory of this being a bad idea for some reason, that Bismark alignments shouldn't be sorted. But it's from years ago and I can't remember the reasoning now.. @FelixKrueger do you know what I'm talking about?
Author
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. Yes, bismark_deduplication needs an unsorted bam, so it gets the unsorted bam |
||
| * Added BISCUIT aligner as an optional aligner, with all relative steps (alignment, mark duplicates with [samblaster](https://github.com/GregoryFaust/samblaster), methylation extraction, QC for biscuit, and optional [Epi-read](https://huishenlab.github.io/biscuit/epiread_format/) file creation with SNP information ). | ||
|
|
||
| ### Software updates | ||
|
|
||
| * _new_: samblaster `0.1.26` | ||
| * _new_: bedtools `2.30.0` | ||
| * _new_: biscuit `0.3.16.20200420` | ||
| * _new_: bcftools`1.10` | ||
|
ekushele marked this conversation as resolved.
Outdated
|
||
| * _new_: parallel `20201122` | ||
| * _new_: gawk `5.1.0` | ||
| * Python base `3.7.3` > `3.8.5` | ||
| * markdown `3.1.1` > `3.3.3` | ||
| * pymdown-extensions `6.0` > `8.1.1` | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| ##INFO=<ID=TYPE,Number=1,Type=String,Description="Variation class/type snv"> | ||
| ##INFO=<ID=COMMON_SOME,Number=1,Type=Integer,Description="1 percent common in some of the population sources in UCSC"> | ||
| ##INFO=<ID=COMMON_ALL,Number=1,Type=Integer,Description="1 percent common in all of the available population sources in UCSC"> | ||
| ##INFO=<ID=REF_MIN,Number=.,Type=Character,Description="ref genotype, less ambiguous from dbsnp or other sources"> | ||
| ##INFO=<ID=ALT_MIN,Number=.,Type=Character,Description="alt genotype, less ambiguous from dbsnp or other sources"> | ||
| ##INFO=<ID=REF_DBSNP,Number=.,Type=Character,Description="ref genotype, dbSNP"> | ||
| ##INFO=<ID=ALT_DBSNP,Number=.,Type=Character,Description="alt genotype, dbSNP"> | ||
| ##INFO=<ID=REF_ALL,Number=.,Type=Character,Description="ref genotype, other sources"> | ||
| ##INFO=<ID=ALT_ALL,Number=.,Type=Character,Description="alt genotype, other sources"> | ||
| ##INFO=<ID=MAX_MAF,Number=.,Type=Float,Description="maximum minor allele frequency among all sources"> | ||
| ##INFO=<ID=RSID,Number=1,Type=String,Description="dbsnp ID"> |
Uh oh!
There was an error while loading. Please reload this page.