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
Merge requests
!16
Issue_4
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Issue_4
Issue_4
into
main
Overview
19
Commits
25
Pipelines
23
Changes
1
Closed
Melvin Alappat
requested to merge
Issue_4
into
main
3 years ago
Overview
19
Commits
25
Pipelines
23
Changes
1
Expand
Adding the code for Issue_4 as well as the nextflow workflow
0
0
Merge request reports
Viewing commit
75735c39
Prev
Next
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
75735c39
feat: adding code for Issue_4
· 75735c39
Melvin Alappat
authored
3 years ago
src/PrimingProb_Final.py
+
2
−
2
Options
@@ -60,7 +60,7 @@ class Probability:
gff (file): Gff file contains all the output information
"""
# count interactions per script through fasta ID (first line of fasta)
mycounter
=
open
(
"
.
/Docker-File
s/transcript.fasta
"
,
"
r
"
)
mycounter
=
open
(
"
.
./input
s/transcript.fasta
"
,
"
r
"
)
mycounter_list
=
[]
@@ -157,7 +157,7 @@ class Probability:
final_list
.
append
(
para_list
[
ss
])
del
para_list
[
0
:
counter_list
[
bb
]]
gff
=
open
(
"
.
/out
put/Potential_Priming_sites.txt
"
,
"
w+
"
)
# gff file
gff
=
open
(
"
.
./in
put
s
/Potential_Priming_sites.txt
"
,
"
w+
"
)
# gff file
for
ll
in
range
(
0
,
len
(
final_list
)):
gff
.
write
(
str
(
final_list
[
ll
][
0
])
+
Loading