File: usage.cpp

package info (click to toggle)
pilercr 1.06%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 844 kB
  • sloc: cpp: 14,339; makefile: 67; sh: 36
file content (29 lines) | stat: -rwxr-xr-x 828 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "pilercr.h"

void Credits()
	{
	static bool Displayed = false;
	if (Displayed)
		return;

	fprintf(stderr, "\n" PILERCR_LONG_VERSION "\n");
	fprintf(stderr, "http://www.drive5.com/piler\n");
	fprintf(stderr, "Written by Robert C. Edgar\n");
	fprintf(stderr, "This software is donated to the public domain.\n");
	fprintf(stderr, "Please visit web site for requested citation.\n\n");
	Displayed = true;
	}

void Usage()
	{
	Credits();
	fprintf(stderr, "\n");
	fprintf(stderr, "Basic usage:\n");
	fprintf(stderr, "\n");
	fprintf(stderr, "   pilercr -in <sequence_file> -out <report_file>\n");
	fprintf(stderr, "\n");
	fprintf(stderr, "Sequence file is in FASTA format.\n");
	fprintf(stderr, "\n");
	fprintf(stderr, "For advanced options, type pilercr -options.\n");
	fprintf(stderr, "\n");
	}