Skip to content

Commit

Permalink
Manual updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomrrr1 committed Mar 4, 2024
1 parent 531bc7f commit 0b74154
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 21 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions .github/workflows/rworkflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: ${{ false }}
matrix:
config:
- os: ubuntu-latest
- os: ubuntu-latest # not run on Windows because MACSr is not supported.
bioc: devel
r: auto
cont: ghcr.io/bioconductor/bioconductor_docker:devel
Expand All @@ -44,7 +44,7 @@ jobs:
auto-activate-base: false
- uses: neurogenomics/rworkflows@master
with:
run_bioccheck: ${{ true }}
run_bioccheck: ${{ false }}
run_rcmdcheck: ${{ true }}
as_cran: ${{ true }}
run_vignettes: ${{ true }}
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ Config/testthat/edition: 3
RoxygenNote: 7.3.1
BugReports: https://github.com/neurogenomics/ConsensusPeak/issues
VignetteBuilder: knitr
biocViews: Epigenetics, PeakDetection, EpigeneticsWorkflow, ChIPSeq
biocViews: Epigenetics, PeakDetection, ChIPSeq
2 changes: 0 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# Generated by roxygen2: do not edit by hand

export(calculate_idr)
export(conservative_idr)
export(feature_counts_matrix)
export(generate_pseudoreplicates)
export(idr_analysis)
export(macs_call_peak)
export(multiple_replicates_chipr)
export(multiple_replicates_mspc)
export(optimal_idr)
import(ChIPpeakAnno)
import(GenomicAlignments)
import(GenomicRanges)
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,14 @@ rep_treat_2 <- system.file("extdata",
Run MACS3 peak calling and IDR thresholding with a single command:

```R
result <- conservative_idr(
treat_files = c(rep_treat_1, rep_treat_2),
out_dir = ".", # Directory to write the output files
idr_stringent = TRUE, # Threshold at 0.01 or 0.05
is_paired = FALSE, # Is the data paired-end?
nomodel = TRUE # MACS3 setting
)
result <- idr_analysis(treat_files = c(rep_treat_1, rep_treat_2),
control_files = NULL,
type = "conservative",
is_paired = FALSE, # Is the data paired-end?
idr_stringent = TRUE # Threshold at 0.01 or 0.05
out_dir = ".", # Directory to write the output files
nomodel = TRUE # MACS3 setting
)
```


Expand Down
1 change: 1 addition & 0 deletions man/conservative_idr.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/multiple_replicates_mspc.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/optimal_idr.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions man/pool_files.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/prepare_named_list.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/run_chipr.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0b74154

Please sign in to comment.