Minor fixes to the cmd-line help messages
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5470 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
7857cb5a22
commit
1d5326ff0c
|
|
@ -52,13 +52,15 @@ import net.sf.samtools.SAMFileReader.ValidationStringency;
|
||||||
public class RemapAlignments extends CommandLineProgram {
|
public class RemapAlignments extends CommandLineProgram {
|
||||||
|
|
||||||
// Usage and parameters
|
// Usage and parameters
|
||||||
@Usage(programVersion="1.0") public String USAGE = "Investigates indels called in the alignment data\n";
|
@Usage(programVersion="1.0") public String USAGE = "Remaps custom-reference (e.g. transcriptome) alignments onto the genomic reference\n";
|
||||||
@Option(shortName="M",
|
@Option(shortName="M",
|
||||||
doc="Map file: from the reference the reads were aligned to, to the master reference the alignments should be remapped to",
|
doc="Map file: from the reference the reads were aligned to, to the master reference the alignments should be remapped to. "+
|
||||||
|
"In other words, for each custom-reference contig C this map must provide a (possibly disjoint) list of intervals "+
|
||||||
|
"on the target reference, onto which C maps base-by-base. ",
|
||||||
optional=false)
|
optional=false)
|
||||||
public File MAP_FILE = null;
|
public File MAP_FILE = null;
|
||||||
@Option(shortName="I",
|
@Option(shortName="I",
|
||||||
doc="Input file (bam or sam) with alignments to be remapped",
|
doc="Input file (bam or sam) with alignments to be remapped",
|
||||||
optional=false)
|
optional=false)
|
||||||
public File IN = null;
|
public File IN = null;
|
||||||
@Option(shortName="O",
|
@Option(shortName="O",
|
||||||
|
|
@ -66,14 +68,15 @@ public class RemapAlignments extends CommandLineProgram {
|
||||||
optional=false)
|
optional=false)
|
||||||
public File OUT = null;
|
public File OUT = null;
|
||||||
@Option(shortName="R",
|
@Option(shortName="R",
|
||||||
doc="Reference to remap alignments onto.",
|
doc="Target reference to remap alignments onto.",
|
||||||
optional=false)
|
optional=false)
|
||||||
public File REFERENCE = null;
|
public File REFERENCE = null;
|
||||||
@Option(
|
@Option(
|
||||||
doc="If a read has multiple alignments that are exactly the same after remapping, "+
|
doc="If a read has multiple alignments that are exactly the same after remapping, "+
|
||||||
"keep only one copy of such alignment in output file. Multiple alignments that are "+
|
"then keep only one copy of such alignment in output file. Multiple alignments that are "+
|
||||||
"not equivalent after remaping are not affected by this flag. "+
|
"not equivalent after remapping are not affected by this flag. "+
|
||||||
"Multiple alignments for the same query must be grouped on adjacent lines of the input file to be detected," +
|
"Multiple alignments for the same query must be grouped on adjacent lines of the input file to be detected "+
|
||||||
|
"(i.e. input file must be sorted by read name), " +
|
||||||
"otherwise REDUCE will have no effect.",
|
"otherwise REDUCE will have no effect.",
|
||||||
optional=true)
|
optional=true)
|
||||||
public boolean REDUCE = false;
|
public boolean REDUCE = false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue