Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
ORG.Annotate
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ORG.Asm
ORG.Annotate
Commits
e8357a63
Commit
e8357a63
authored
Jan 24, 2018
by
Eric Coissac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch a bug to launch exonerate on complexe filename
parent
626566f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
detectors/cds/bin/do_exonerate.csh
detectors/cds/bin/do_exonerate.csh
+17
-3
detectors/cds/bin/go_cds.csh
detectors/cds/bin/go_cds.csh
+4
-0
No files found.
detectors/cds/bin/do_exonerate.csh
View file @
e8357a63
...
...
@@ -110,8 +110,21 @@ set base = $OutDir/$GenoName.$ProtName
#
# Alias the genome filename to a short name
# to circumvent a bug in exonerate
set ShortLink = $OutDir/genome.fasta
ln -s $GenoFile $ShortLink
echo $GenoFile | grep '^/' > /dev/null
if ( $status == 1 ) then
set AbsGenoFile = `pwd`/$GenoFile
set DirGenoFile = `dirname $AbsGenoFile`
set DirGenoFile = `(cd $DirGenoFile;pwd)`
set AbsGenoFile = $DirGenoFile/`basename $AbsGenoFile`
else
set AbsGenoFile = $GenoFile
endif
set ShortDir = `mktemp -d`
set ShortLink = $ShortDir/genome.fasta
ln -s $AbsGenoFile $ShortLink
Notify " Building input shortcut $AbsGenoFile --> $ShortLink"
#
# skip exonerate calculations if already done
...
...
@@ -232,7 +245,8 @@ $AwkCmd -f $LIB_DIR/toEmbl.awk $base.iff |\
# end
#
rm -f $ShortLink
rm -rf $ShortDir
Notify " output file: $base.res"
(\rm -f ?_$$) >> /dev/null
...
...
detectors/cds/bin/go_cds.csh
View file @
e8357a63
...
...
@@ -63,6 +63,8 @@ foreach dir ("core" "shell" "dust")
endif
end
cp $temp/ $Genome.cds.fasta $Genome.cds.fasta
#
# pass2: transsplicing
#
...
...
@@ -71,6 +73,8 @@ end
# pass3: prokov
#
$PROG_DIR/do_prokov.sh $Fasta $Genome.cds.fasta $temp
#
# end : output on stdout
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment