Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Transcript sampler
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
tools
Transcript sampler
Commits
da3a722e
Commit
da3a722e
authored
2 years ago
by
Laura Urbanska
Browse files
Options
Downloads
Patches
Plain Diff
added sample transcript script
parent
40e889b8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sampletranscript.py
+42
-0
42 additions, 0 deletions
sampletranscript.py
with
42 additions
and
0 deletions
sampletranscript.py
0 → 100644
+
42
−
0
View file @
da3a722e
import
pandas
as
pd
import
numpy
as
np
'''
Sample transcript
This part of the code does Poisson sampling proportionally to gene expression levels for each gene.
input: total transcript number (int)
csv file with gene id and gene expression levels (columns named
'
id
'
and
'
level
'
)
output: csv file with gene id and count
gtf file with transcript samples
'''
def
transcript_sampling
(
total_transcript
,
transcripts
):
#read file containing representative transcript levels and id
transcript
=
pd
.
read_csv
(
transcripts
)
transcript
=
transcripts
levels
=
[]
#poisson sampling for each gene, proportional to expression levels
for
expression_level
in
transcript
[
'
level
'
]:
poisson_sampled
=
np
.
random
.
poisson
(
total_transcript
/
expression_level
)
levels
.
append
(
poisson_sampled
)
# note: if levels from input are decimals, total trancript should be multiplied by expr level, not divided
# poisson_sampled = np.random.poisson(total_transcript*expression_level)
#write output csv file containing transcript id and count (representative transcript numbers)
transcript_numbers
=
pd
.
DataFrame
({
'
id
'
:
transcript
[
'
id
'
],
'
count
'
:
levels
})
pd
.
DataFrame
.
to_csv
(
transcript_numbers
,
"
representative_transcript_numbers.csv
"
)
'''
This function writes keeps the representative transcripts from the original input file (gtf)
and writes them to an output.
'''
\ No newline at end of file
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