Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
R
rnaseq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BICF
Astrocyte
rnaseq
Commits
18c034ed
Commit
18c034ed
authored
Jun 25, 2018
by
Jonathan Gesell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected issue where a gene with 0 read counts could crash the dea.R scripts.
parent
2adff316
Pipeline
#2043
failed with stage
in 185 minutes and 52 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
nextflow.config
nextflow.config
+1
-1
workflow/process_scripts
workflow/process_scripts
+1
-1
workflow/scripts/dea.R
workflow/scripts/dea.R
+2
-0
No files found.
nextflow.config
View file @
18c034ed
process
.
executor
=
'slurm'
process
.
queue
=
'128GB,256GB,256GBv1'
process
.
clusterOptions
=
'--hold'
trace
.
enabled
=
tru
e
trace
.
enabled
=
fals
e
trace
.
file
=
'pipeline_trace.txt'
trace
.
field
=
'task_id,native_id,process,name,status,exit,submit,start,complete,duration,realtime'
process_scripts
@
291e1c35
Compare
0bdf56d5
...
291e1c35
Subproject commit
0bdf56d5bdb9252ce418fcf7d0c7bdbcee9ff4a1
Subproject commit
291e1c352873ce14881ab8b1822fa7d3183b946b
workflow/scripts/dea.R
View file @
18c034ed
...
...
@@ -94,6 +94,7 @@ for (i in 1:a) {
filt.out
<-
na.omit
(
output
[
output
$
fdr
<
0.05
,])
if
(
nrow
(
filt.out
)
>
2
)
{
subset
<-
logcpm
[
row.names
(
logcpm
)
%in%
filt.out
$
symbol
,]
subset
<-
subset
[
!
apply
(
subset
,
1
,
function
(
x
)
{
any
(
x
==
0
)}),]
gnames
<-
filt.out
[
c
(
'ensembl'
,
'symbol'
)]
s
<-
merge
(
gnames
,
subset
,
by.x
=
"ensembl"
,
by.y
=
"row.names"
,
all.x
=
FALSE
,
all.y
=
TRUE
,
sort
=
FALSE
)
STREE
<-
hclust
(
dist
(
t
(
subset
)))
...
...
@@ -148,6 +149,7 @@ for (i in 1:a) {
filt.out
<-
na.omit
(
output
[
output
$
fdr
<
0.05
,])
if
(
nrow
(
filt.out
)
>
2
)
{
subset
<-
logcpm
[
row.names
(
logcpm
)
%in%
filt.out
$
symbol
,]
subset
<-
subset
[
!
apply
(
subset
,
1
,
function
(
x
)
{
any
(
x
==
0
)}),]
gnames
<-
filt.out
[
c
(
'ensembl'
,
'symbol'
)]
s
<-
merge
(
gnames
,
subset
,
by.x
=
"ensembl"
,
by.y
=
"row.names"
,
all.x
=
FALSE
,
all.y
=
TRUE
,
sort
=
FALSE
)
STREE
<-
hclust
(
dist
(
t
(
subset
)))
...
...
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