Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GUDMAP_RBK
RNA-seq
Commits
7e35e638
Commit
7e35e638
authored
Aug 20, 2020
by
Gervaise Henry
🤠
Browse files
Merge branch 'develop' into 'master'
Develop See merge request
!41
parents
eedb6628
64c587de
Pipeline
#7981
passed with stages
in 96 minutes and 33 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
7e35e638
...
...
@@ -3,8 +3,11 @@
*
Output:
*
inputBag
*
outputBag
*
Remove gene details from tpm table
*
Add EntrezID translation to tpm table (from version specific reference)
**Background**
*
Add GeneSymbol/EnsemblID/EntrezID translation files to references
*Known Bugs*
*
outputBag does not contain fetch for processed data
...
...
docs/dag.png
View replaced file @
eedb6628
View file @
7e35e638
673 KB
|
W:
|
H:
674 KB
|
W:
|
H:
2-up
Swipe
Onion skin
workflow/scripts/convertGeneSymbols.R
View file @
7e35e638
...
...
@@ -19,6 +19,6 @@ convert <- convert[,-1]
colnames
(
convert
)
<-
c
(
"GeneID"
,
"EntrezID"
)
convert
<-
unique
(
convert
)
output
<-
merge
(
x
=
convert
,
y
=
countTable
,
by.x
=
"GeneID"
,
by.y
=
"Geneid"
,
all.x
=
TRUE
)
output
<-
merge
(
x
=
convert
,
y
=
countTable
[,
c
(
"Geneid"
,
"count"
,
"tpm"
)]
,
by.x
=
"GeneID"
,
by.y
=
"Geneid"
,
all.x
=
TRUE
)
write.table
(
output
,
file
=
paste0
(
opt
$
repRID
,
".tpmTable.csv"
),
sep
=
","
,
row.names
=
FALSE
,
quote
=
FALSE
)
\ No newline at end of file
write.table
(
output
,
file
=
paste0
(
opt
$
repRID
,
".tpmTable.csv"
),
sep
=
","
,
row.names
=
FALSE
,
quote
=
FALSE
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment