Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ngspipelines
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
Container Registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
genotoul-bioinfo
ngspipelines
Commits
040344fe
Commit
040344fe
authored
8 years ago
by
Celine Noirot
Browse files
Options
Downloads
Patches
Plain Diff
Debug with source from prod.
parent
405f52eb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
workflows/rnaseqdenovo/__init__.py
+2
-2
2 additions, 2 deletions
workflows/rnaseqdenovo/__init__.py
workflows/rnaseqdenovo/components/renamerules.py
+1
-1
1 addition, 1 deletion
workflows/rnaseqdenovo/components/renamerules.py
with
3 additions
and
3 deletions
workflows/rnaseqdenovo/__init__.py
+
2
−
2
View file @
040344fe
...
...
@@ -605,7 +605,7 @@ class RNAseqDenovo (ApplicationWithoutReferenceGenome):
dna
=
self
.
add_biomart_load
(
DNA
,
[
self
.
assembly
[
"
file
"
]])
# load the go table
if
self
.
go
:
if
self
.
go
!=
None
:
go_convert
=
self
.
add_component
(
"
GO2topGO
"
,
[
self
.
go
],
component_prefix
=
"
GOUser
"
)
go
=
self
.
add_biomart_load
(
GO
,
[
self
.
go
],
"
Gene Ontology
"
,
"
GO
"
,
...
...
@@ -618,7 +618,7 @@ class RNAseqDenovo (ApplicationWithoutReferenceGenome):
None
)
# load the keyword table
if
self
.
keyword
:
if
self
.
keyword
!=
None
:
kw
=
self
.
add_biomart_load
(
Keyword
,
[
self
.
keyword
])
# load the variant tables
...
...
This diff is collapsed.
Click to expand it.
workflows/rnaseqdenovo/components/renamerules.py
+
1
−
1
View file @
040344fe
...
...
@@ -45,7 +45,7 @@ def renames_with_annot( prefix, inputs, rename_file):
clean_gene
=
""
gene_name
=
record
.
attributesToStr
(
"
gene
"
)
for
char
in
gene_name
:
if
char
.
isalnum
()
or
char
in
[
'
.
'
,
'
:
'
,
'
^
'
,
'
*
'
,
'
$
'
,
'
@
'
,
'
!
'
,
'
+
'
,
'
_
'
,
'
?
'
,
'
-
'
,
'
|
'
]:
# GFF3 seqid specifications
if
char
.
isalnum
()
or
char
in
[
'
.
'
,
'
^
'
,
'
*
'
,
'
$
'
,
'
@
'
,
'
!
'
,
'
+
'
,
'
_
'
,
'
?
'
,
'
-
'
,
'
|
'
]:
# GFF3 seqid specifications
clean_gene
+=
char
dict_contig_id_gene
[
record
.
seq_id
]
=
clean_gene
if
dict_gene_contig_id
.
has_key
(
clean_gene
)
:
...
...
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