-
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.
paper: incorporate reviewer comments
- Loading branch information
1 parent
26fe851
commit bcff1f8
Showing
6 changed files
with
76 additions
and
23 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 |
---|---|---|
|
@@ -177,7 +177,3 @@ tmp/ | |
!/tests/data/reference | ||
# pixi environments | ||
.pixi | ||
|
||
|
||
paper/*.jats | ||
paper/*.pdf |
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,4 @@ | ||
paper.pdf | ||
paper.jats | ||
jats/ | ||
|
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,7 +1,9 @@ | ||
paper.pdf: paper.md paper.bib | ||
paper.pdf: paper.md paper.bib workflow.png | ||
docker run --rm \ | ||
--volume $$PWD/:/data \ | ||
--user $$(id -u):$$(id -g) \ | ||
--env JOURNAL=joss \ | ||
openjournals/inara | ||
|
||
workflow.png: workflow.dot | ||
dot -Tpng -s300 -o$@ $< |
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,34 @@ | ||
digraph G { | ||
rankdir="LR" | ||
// files | ||
{ | ||
node [shape= rect]; | ||
fastqs [label = "fastqs" ]; | ||
bam [label = "10X bam" ]; | ||
sam [label = "unmapped 10X sam"]; | ||
{ | ||
node [ color = "#005f86"]; | ||
counts [label = "barcode counts" ]; | ||
combined_counts [label = "combined counts" ]; | ||
sc_counts [label = "single cell counts"]; | ||
} | ||
} | ||
|
||
// commands | ||
samtools [label = "samtools view -f 4";] | ||
{ | ||
node [ color = "#bf5700"]; | ||
extract [label = "pycashier extract"] | ||
merge [label = "pycashier merge" ] | ||
scrna [label = "pycashier scrna" ] | ||
receipt [label = "pycashier receipt"] | ||
} | ||
|
||
// dag | ||
fastqs -> extract [label = "single-end"]; | ||
fastqs -> merge [label = "paired-end"]; | ||
merge -> extract; | ||
extract -> counts; | ||
counts -> receipt -> combined_counts; | ||
bam -> samtools -> sam -> scrna -> sc_counts; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.