Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bedtools2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
R3
legacy
bedtools2
Commits
a2cacdf7
Commit
a2cacdf7
authored
10 years ago
by
Neil Kindlon
Browse files
Options
Downloads
Patches
Plain Diff
Cleaned up error message for sort order detection of missing chrom
parent
b561a2f4
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
src/utils/NewChromsweep/NewChromsweep.cpp
+1
-1
1 addition, 1 deletion
src/utils/NewChromsweep/NewChromsweep.cpp
test/intersect/sortAndNaming/test-sort-and-naming.sh
+2
-2
2 additions, 2 deletions
test/intersect/sortAndNaming/test-sort-and-naming.sh
with
3 additions
and
3 deletions
src/utils/NewChromsweep/NewChromsweep.cpp
+
1
−
1
View file @
a2cacdf7
...
...
@@ -396,7 +396,7 @@ void NewChromSweep::testThatAllDbChromsExistInQuery()
if
(
qTrack
->
find
(
chrom
)
==
qTrack
->
end
())
{
fprintf
(
stderr
,
"ERROR: Database file %s contains chromosome %s, but the query file does not.
\n
"
,
_context
->
getInputFileName
(
i
).
c_str
(),
chrom
.
c_str
());
fprintf
(
stderr
,
"
\t
Please re-reun with the -g option for a genome file.
\n
\t
See documentation for details.
\n
"
);
fprintf
(
stderr
,
"
Please re-reun with the -g option for a genome file.
\n
See documentation for details.
\n
"
);
exit
(
1
);
}
}
...
...
This diff is collapsed.
Click to expand it.
test/intersect/sortAndNaming/test-sort-and-naming.sh
+
2
−
2
View file @
a2cacdf7
...
...
@@ -60,8 +60,8 @@ rm obs
echo
" intersect.t04...
\c
"
echo
\
"ERROR: Database file db1_num.bed contains chromosome chr3, but the query file does not.
Please re-reun with the -g option for a genome file.
See documentation for details."
>
exp
Please re-reun with the -g option for a genome file.
See documentation for details."
>
exp
$BT
intersect
-a
q1_num.bed
-b
db1_num.bed db2_num.bed
-sorted
2>&1
>
/dev/null |
cat
-
>
obs
check obs exp
rm
obs
...
...
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