Skip to content
This repository was archived by the owner on Apr 20, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions kin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,19 +321,9 @@ int kin_main(int argc, char* argv[])
assert(min_freq>=0 && min_freq<=1);
if((!targets.empty() && !regions.empty()) )
{
cerr<<"ERROR: -r/-R and -r/-R are incompatible"<<endl;
cerr<<"ERROR: -t/-T and -r/-R are incompatible"<<endl;
exit(1);
}
if(!frq_file.empty() && !regions.empty())
{
cerr<<"ERROR: -F and -R/-r are incompatible!"<<endl;
exit(1);
}
if(!frq_file.empty() && regions.empty())
{
regions=frq_file;
regions_is_file=true;
}
if(frq_file.empty())
{
cerr<<"No frequency VCF provided (-F). Allele frequencies will be estimated from the data."<<endl;
Expand Down