Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scRNA-seq-simulation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zavolan_group
pipelines
scRNA-seq-simulation
Commits
81e851d5
Commit
81e851d5
authored
3 years ago
by
Melvin Alappat
Browse files
Options
Downloads
Patches
Plain Diff
feat: execution of python script in workflow
parent
6171438b
Branches
Branches containing commit
No related tags found
1 merge request
!16
Issue_4
Pipeline
#13894
passed
3 years ago
Stage: qc
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/primingprob/PrimingProb_process.nf
+21
-0
21 additions, 0 deletions
src/primingprob/PrimingProb_process.nf
with
21 additions
and
0 deletions
src/primingprob/PrimingProb_process.nf
+
21
−
0
View file @
81e851d5
...
...
@@ -2,6 +2,7 @@
params
.
transcripts
=
"/Users/kegany44/Master/PythonCourse/Issue_4/scrna-seq-simulation/inputs/transcript.fasta"
params
.
primers
=
"/Users/kegany44/Master/PythonCourse/Issue_4/scrna-seq-simulation/inputs/primer.fasta"
params
.
output
=
"/Users/kegany44/Master/PythonCourse/Issue_4/scrna-seq-simulation/inputs/Potential_Priming_Sites.txt"
log
.
info
"""\
...
...
@@ -18,6 +19,8 @@ process RIblast_interaction {
path
transcript
from
params
.
transcripts
path
primer
from
params
.
primers
output:
file
"Energies.txt"
into
energy_channel
script:
"""
...
...
@@ -27,6 +30,24 @@ process RIblast_interaction {
}
process
PrimingProb
{
input:
file
energy
from
energy_channel
path
transcript
from
params
.
transcripts
path
output
from
params
.
output
script:
"""
cli_priming_prob.py $energy $transcript $output
"""
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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