Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
e06e5213
Commit
e06e5213
authored
14 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
LMS-1882 dynamix: script to update metadata from yeastgenome.org
SVN: 18871
parent
38400bcc
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
screening/source/python/dynamix-orf-update.py
+76
-0
76 additions, 0 deletions
screening/source/python/dynamix-orf-update.py
screening/source/python/used-orfs.txt
+4225
-0
4225 additions, 0 deletions
screening/source/python/used-orfs.txt
with
4301 additions
and
0 deletions
screening/source/python/dynamix-orf-update.py
0 → 100755
+
76
−
0
View file @
e06e5213
#!/usr/bin/python
# Creates an update of the ORF materials for the DynamiX project.
# The output file has to be imported using material batch update.
#
# Before you run this script you have to manually download the list of all ORF codes from openBIS
# 1. Go to:
# http://dynamix.vital-it.ch/openbis/?viewMode=simple#action=BROWSE&entity=MATERIAL&type=ORF
# 2. Hide all columns instead of "Code" and export the table
# 3. Save the result in 'used-orfs.txt' file and remove the header
# Author: Tomasz Pylak
import
os
METADATA_FILE_URL
=
"
http://downloads.yeastgenome.org/chromosomal_feature/SGD_features.tab
"
HEADER
=
"
PRIMARY_SGD_ID ORF_CLASSIFICATION code STANDARD_NAME ALIAS_NAMES CHROMOSOME_STANDARD_NAME DESCRIPTION
"
NAME_INDEX
=
2
ALIAS_INDEX
=
4
# returns the set of ORFs codes defined in openBIS
def
getUsedCodes
(
filePath
):
f
=
open
(
filePath
)
usedCodes
=
set
()
for
line
in
f
:
line
=
line
.
strip
()
if
(
line
[
0
]
==
'
Y
'
):
usedCodes
.
add
(
line
)
return
usedCodes
def
createUpdate
(
usedCodes
,
metadataFile
,
outFileName
):
out
=
open
(
outFileName
,
'
w
'
)
out
.
write
(
HEADER
+
"
\n
"
);
importedCodes
=
set
()
for
line
in
metadataFile
:
tokens
=
line
.
strip
().
split
(
'
\t
'
)
name
=
tokens
[
NAME_INDEX
]
if
len
(
tokens
)
>
ALIAS_INDEX
:
aliases
=
set
(
tokens
[
ALIAS_INDEX
].
strip
().
split
(
'
|
'
))
else
:
aliases
=
set
()
if
(
name
in
usedCodes
):
out
.
write
(
line
)
importedCodes
.
add
(
name
)
if
len
(
aliases
&
usedCodes
)
>
0
:
used_aliases
=
aliases
&
usedCodes
if
len
(
used_aliases
)
>
1
:
raise
Exception
(
'
Alias matches more name:
'
+
(
used_aliases
))
alias
=
used_aliases
.
pop
()
tokens
[
NAME_INDEX
]
=
alias
tokens
[
ALIAS_INDEX
]
=
tokens
[
ALIAS_INDEX
]
+
'
|
'
+
name
print
"
Using alias
"
+
alias
+
"
instead of the systematic name
"
+
name
out
.
write
(
'
\t
'
.
join
(
tokens
)
+
"
\n
"
)
importedCodes
.
add
(
alias
)
out
.
close
()
unimportedCodes
=
(
usedCodes
-
importedCodes
)
if
len
(
unimportedCodes
)
>
0
:
print
"
Missing metadata for:
"
print
unimportedCodes
usedCodes
=
getUsedCodes
(
'
used-orfs.txt
'
)
metadataFileName
=
'
orf.txt
'
metadataFileNameOrg
=
metadataFileName
+
'
.org
'
os
.
system
(
"
wget -O
"
+
metadataFileNameOrg
+
"
"
+
METADATA_FILE_URL
);
os
.
system
(
"
cat
"
+
metadataFileNameOrg
+
"
| cut -f1,3,4,5,6,7,16 >
"
+
metadataFileName
);
metadataFile
=
open
(
metadataFileName
)
createUpdate
(
usedCodes
,
metadataFile
,
'
orf-update.txt
'
)
#os.remove(metadataFileNameOrg)
os
.
remove
(
metadataFileName
)
This diff is collapsed.
Click to expand it.
screening/source/python/used-orfs.txt
0 → 100644
+
4225
−
0
View file @
e06e5213
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