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
a89eb9f5
Commit
a89eb9f5
authored
4 years ago
by
Jeremy Mathews
Browse files
Options
Downloads
Patches
Plain Diff
Add Jons Syntax Fix
parent
e605a9e7
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!58
Develop
,
!51
Add run details to output bag
Pipeline
#8394
passed with stages
in 2 hours, 45 minutes, and 12 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/rna-seq.nf
+10
-8
10 additions, 8 deletions
workflow/rna-seq.nf
with
10 additions
and
8 deletions
workflow/rna-seq.nf
+
10
−
8
View file @
a89eb9f5
...
...
@@ -1248,15 +1248,17 @@ process outputBag {
echo -e "**Workflow URL:** https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq" >> runDetails.md
echo -e "**Workflow Version:** ${workflow.manifest.version}" >> runDetails.md
echo -e "**Description:** ${workflow.manifest.description}" >> runDetails.md
if [ "${species}" == "Mus musculus" ]
then
echo -e "**Genome Assembly Version:** GRCm38 patch p6" >> runDetails.md
echo -e "**Annotation Version:** GENCODE release M22" >> runDetails.md
elif [ "${species}" == "Homo sapiens" ]
then
echo -e "**Genome Assembly Version:** GRCh38 patch p12" >> runDetails.md
echo -e "**Annotation Version:** GENCODE release 31" >> runDetails.md
if [ "${species}" == "Mus musculus" ]
; then
genome=\$(echo GRCm${refMoVersion} | cut -d '.' -f1)
patch=\$(echo ${refMoVersion} | cut -d '.' -f2)
annotation=\$(echo ${refMoVersion} | cut -d '.' -f3 | tr -d 'v')
elif [ "${species}" == "Homo sapiens" ]
; then
genome=\$(echo GRCh${refHuVersion} | cut -d '.' -f1)
patch=\$(echo ${refHuVersion} | cut -d '.' -f2)
annotation=\$(echo ${refHuVersion} | cut -d '.' -f3 | tr -d 'v')
fi
echo -e "**Genome Assembly Version:** \${genome} patch \${patch}" >> runDetails.md
echo -e "**Annotation Version:** GENCODE release \${annotation}" >> runDetails.md
echo -e "**Run ID:** ${repRID}" >> runDetails.md
cp runDetails.md Replicate_${repRID}.outputBag
cp ${multiqc} Replicate_${repRID}.outputBag
...
...
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