~ubuntu-branches/ubuntu/wily/r-bioc-genomicranges/wily-proposed

« back to all changes in this revision

Viewing changes to man/Seqinfo-class.Rd

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2014-06-13 15:04:19 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140613150419-v49mxnlg42rnuks5
Tags: 1.16.3-1
* New upstream version
* New (Build-)Depends: r-bioc-genomeinfodb
* cme fix dpkg-control
* add autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
\alias{isCircular<-,Seqinfo-method}
25
25
\alias{genome,Seqinfo-method}
26
26
\alias{genome<-,Seqinfo-method}
27
 
\alias{seqnameStyle,Seqinfo-method}
28
 
\alias{seqnameStyle<-,Seqinfo-method}
29
27
\alias{[,Seqinfo-method}
30
28
\alias{coerce,Seqinfo,GRanges-method}
31
29
\alias{coerce,Seqinfo,GenomicRanges-method}
132
130
      Get/set the genome identifier or assembly name for each sequence
133
131
      in \code{x}.
134
132
    }
135
 
    \item{}{
136
 
      \code{seqnameStyle(x)}:
137
 
      Get/set the seqname style for \code{x}.
138
 
      Note that this information is not stored in \code{x} but inferred
139
 
      by looking up \code{seqnames(x)} against a seqname style database
140
 
      stored in the seqnames.db metadata package (required).
141
 
      The getter can return more than 1 seqname style (with a warning)
142
 
      in case the style cannot be determined unambiguously.
143
 
    }
144
133
  }
145
134
}
146
135
 
236
225
seqlengths(x)
237
226
isCircular(x)
238
227
genome(x)
239
 
seqnameStyle(x)  # UCSC
240
 
seqnameStyle(x) <- "NCBI"
241
 
seqlevels(x)
242
 
seqnameStyle(x)  # NCBI (ambiguous)
243
 
seqnameStyle(x) <- "UCSC"
244
 
seqlevels(x)
245
228
 
246
229
x[c("chrY", "chr3", "chr1")]  # subset by names
247
230