Skip to content

Commit

Permalink
Merge pull request #39 from CCBR/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
slsevilla authored Feb 10, 2023
2 parents e0d7769 + 208afae commit b018de9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/user-guide/output.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# 4. Expected Outputs
The following directories are created under the WORKDIR/results directory:

- annotation: this directory will include annotations from HOMER and ROSE. It contains a sub-directory that relates to the quality threshold used.
- alignment_stats: this directory include information on the alignment of each sample
- bigwig: this directory includes the bigwig files for each sample
- peaks:
- peaks: It contains a sub-directory that relates to the quality threshold used.
- contrasts: this includes the contrasts for each line listed in the contrast manifest
- seacr: this includes all peak calls from SEACR for each sample
- macs2: this includes all peak calls from MACS2 for each sample
Expand Down
8 changes: 5 additions & 3 deletions workflow/scripts/_diff_markdown.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,11 @@ deg %>% rownames_to_column(var="Annotation") -> deg
pander(deg)
# add catch for hs1 which names SYMBOLS col as geneId
lookup <- c(SYMBOL = "geneId")
results_df=results_df %>%
dplyr::rename(any_of(lookup))
if(params$species == "hs1"){
lookup <- c(SYMBOL = "geneId")
results_df=results_df %>%
dplyr::rename(any_of(lookup))
}
```

### DESeq Volcano
Expand Down

0 comments on commit b018de9

Please sign in to comment.