Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RNA-seq
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
GUDMAP_RBK
RNA-seq
Commits
e0b3d4bd
Commit
e0b3d4bd
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Remove quotes and colons from multiqc custom tables
parent
be4bafc9
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!37
v0.0.1
,
!36
Metadata output update
Pipeline
#7817
failed with stages
in 1 day, 2 minutes, and 10 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
workflow/conf/multiqc_config.yaml
+12
-12
12 additions, 12 deletions
workflow/conf/multiqc_config.yaml
workflow/rna-seq.nf
+2
-2
2 additions, 2 deletions
workflow/rna-seq.nf
with
14 additions
and
14 deletions
workflow/conf/multiqc_config.yaml
+
12
−
12
View file @
e0b3d4bd
...
...
@@ -64,9 +64,9 @@ custom_data:
pconfig
:
id
:
'
rid'
headers
:
'
Replicate
RID
:'
'
Experiment
RID
:'
'
Study
RID
:'
Replicate RID
Experiment RID
Study RID
meta
:
file_format
:
'
tsv'
section_name
:
'
Metadata'
...
...
@@ -75,15 +75,15 @@ custom_data:
pconfig
:
id
:
'
meta'
headers
:
'
Source
:'
'
Species
:'
'
Ends
:'
'
Stranded
:'
'
Spike-in
:'
'
Raw
Reads
:'
'
Assigned
Reads
:'
'
Median
Read
Length
:'
'
Median
TIN
:'
Source
Species
Ends
Stranded
Spike-in
Raw
-
Reads
Assigned
-
Reads
Median
-
Length
Median
-
TIN
file_format
:
'
tsv'
section_name
:
'
TIN'
...
...
This diff is collapsed.
Click to expand it.
workflow/rna-seq.nf
+
2
−
2
View file @
e0b3d4bd
...
...
@@ -1024,12 +1024,12 @@ process aggrQC {
# make RID table
echo -e "LOG: creating RID table" >> ${repRID}.aggrQC.log
echo -e "Replicate RID
:
\tExperiment RID
:
\tStudy RID
:
" > rid.tsv
echo -e "Replicate RID\tExperiment RID\tStudy RID" > rid.tsv
echo -e "${repRID}\t${expRID}\t${studyRID}" >> rid.tsv
# make metadata table
echo -e "LOG: creating metadata table" >> ${repRID}.aggrQC.log
echo -e "Source\tSpecies
:
\tEnds
:
\tStranded
:
\tSpike-in
:
\tRaw
Reads
:
\tAssigned
Read
s
:\tMedia
n Read
Length
:
\tMedian
TIN
:
" > metadata.tsv
echo -e "Source\tSpecies\tEnds\tStranded\tSpike-in\tRaw
-
Reads\tAssigned
-
Read:\tMedia
-
Length\tMedian
-
TIN" > metadata.tsv
echo -e "Submitter\t${speciesM}\t${endsM}\t${strandedM}\t${spikeM}\t-\t-\t'${readLengthM}'\t-" >> metadata.tsv
echo -e "Infered\t${speciesI}\t${endsI}\t${strandedI}\t${spikeI}\t-\t-\t-\t-" >> metadata.tsv
echo -e "Measured\t-\t${endsManual}\t-\t-\t'${rawReadsI}'\t'${assignedReadsI}'\t'${readLengthI}'\t'${tinMedI}'" >> metadata.tsv
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment