Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
profileview
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Edoardo SARTI
profileview
Commits
d851d812
Commit
d851d812
authored
Jun 26, 2019
by
Riccardo Vicedomini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unused parameter in profileview-tree and updated version date
parent
b2f62c24
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
11 deletions
+4
-11
profileview-build
profileview-build
+1
-1
profileview-common
profileview-common
+1
-1
profileview-tree
profileview-tree
+2
-9
No files found.
profileview-build
View file @
d851d812
...
...
@@ -193,7 +193,7 @@ for query in "${PVLIB_QUERY}"/*.fa; do
[
-e
"
${
query
}
"
]
||
continue
queryBase
=
${
query
##*/
}
queryName
=
${
queryBase
%.fa
}
echo
"hhblits
${
HHBLITS_DBS
}
-i
${
query
}
-o stdout -oa3m
${
PVLIB_PREFIX
}
/a3m/
${
queryName
}
.a3m -ohhm
${
PVLIB_PREFIX
}
/hhm/
${
queryName
}
.hhm -M first -qid 60 -cov 70 -id 98 -e 1e-10 -n
3
-cpu
${
NTHREADS
}
-v 0 >/dev/null 2>&1"
echo
"hhblits
${
HHBLITS_DBS
}
-i
${
query
}
-o stdout -oa3m
${
PVLIB_PREFIX
}
/a3m/
${
queryName
}
.a3m -ohhm
${
PVLIB_PREFIX
}
/hhm/
${
queryName
}
.hhm -M first -qid 60 -cov 70 -id 98 -e 1e-10 -n
2
-cpu
${
NTHREADS
}
-v 0 >/dev/null 2>&1"
done
|
${
PEXEC_CMD
}
# left it unquoted!
print_status
"formatting a3m files"
...
...
profileview-common
View file @
d851d812
...
...
@@ -17,7 +17,7 @@
# Common functions and definitions to be used in ProfileView
PV_NAME
=
"ProfileView"
PV_VERSION
=
'1.0'
PV_DATE
=
'190
531
'
PV_DATE
=
'190
626
'
function
abspath
()
{
echo
"
$(
cd
"
$(
dirname
"
$1
"
)
"
;
pwd
-P
)
/
$(
basename
"
$1
"
)
"
;
}
...
...
profileview-tree
View file @
d851d812
...
...
@@ -29,7 +29,6 @@ function ctrl_c() { exit 5; }
INPUT_FASTA
=
""
PV_LIBPATH
=
""
PV_OUTTREE
=
""
PV_SEQDESC
=
""
PV_OUTPREFIX
=
"out"
PV_TMPDIR
=
""
...
...
@@ -49,8 +48,6 @@ function print_usage() {
-l, --lib <name>
\t
ProfileView library name
\n
"
| column
-t
-s
$'
\t
'
echo
-en
"
\n
"
echo
-en
" OTHER OPTIONS:
\n
-o, --out-tree <name>
\t
Output file which will contain the ProfileView tree
\n
\t
(if not provided, it will be printed on the standard output)
\n
-s, --seq-desc <name>
\t
Input sequence descriptor file, that is a CSV file containing the follwing fileds:
\n
\t
<sequence_id>,<function_id>,<family_id>,<sequence_length>
\n
-p, --prefix <name>
\t
Prefix of output files (default:
${
PV_OUTPREFIX
}
)
\n
...
...
@@ -63,8 +60,8 @@ function print_usage() {
# retrieve provided arguments
opts
=
"i:l:
o:
s:p:j:hV"
longopts
=
"input:,lib:,
out-tree:,
seq-desc:,prefix:,temp-dir:,max-jobs:,help,version"
opts
=
"i:l:s:p:j:hV"
longopts
=
"input:,lib:,seq-desc:,prefix:,temp-dir:,max-jobs:,help,version"
ARGS
=
$(
getopt
-o
"
${
opts
}
"
-l
"
${
longopts
}
"
-n
"
${
CMD_NAME
}
"
--
"
${
@
}
"
)
if
[
$?
-ne
0
]
||
[
$#
-eq
0
]
;
then
# the order of this tests is important!
print_usage
...
...
@@ -83,10 +80,6 @@ while [ -n "${1}" ]; do
shift
PV_LIBPATH
=
${
1
}
;;
-o
|
--out-tree
)
shift
PV_OUTTREE
=
${
1
}
;;
-s
|
--seq-desc
)
shift
PV_SEQDESC
=
${
1
}
...
...
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