view release on metacpan or search on metacpan
# Selects the element thatÎÃÃs the root of the document
# (JQuery,Selectors,Other,Filters,Table
# 2,8)
:root
# Selects the target element indicated by the fragment identifier of the documents
# URI (JQuery,Selectors,Other,Filters,Table 2,8)
:target
# Selects only elements that are visible (JQuery,Selectors,Other,Filters,Table 2,8)
:visible
# Use atomic script runs to prevent named attacks. (paypal.com,perl regex verb ASR)
perl -C -E 'say "\N{CYRILLIC SMALL LETTER ER}aypal.com" =~ /^\w+\.com$/' # 1
perl -C -E 'say "\N{CYRILLIC SMALL LETTER ER}aypal.com" =~ /(*asr:^\w+\.com$)/' # 0
# Control verb: FAIL versus split.
perl -Me -e 'n { split => sub{ my %c; $c{lc($_)}++ for split("", "supercalifragilisticexpialidocious") }, fail => sub { my %c; "supercalifragilisticexpialidocious" =~ /([aeiou])(?{ $c{$1}++; })(*FAIL)/i } }, 1000000'
Rate fail split
fail 114679/s -- -17%
split 137741/s 20% --
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Chorus/Slidedeck.pm view on Meta::CPAN
if ( $elem->text =~ /^\s*\.{3}/ ) {
(my $text = $elem->text ) =~ s/^\s*\.{3}//;
$elem->text($text);
if ( $elem->parent->get(0)->tag eq 'li' ) {
$elem->parent->add_class('fragment');
}
else {
$elem->add_class('fragment');
}
}
});
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chronicle/URI.pm view on Meta::CPAN
=head1 METHODS
=head2 new
The constructor takes only a single argument that will be assumed to be an http
URI, or in our case usually a path fragment thereof.
=cut
sub new
{
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/ClipboardUtils.pm view on Meta::CPAN
$SPEC{add_clipboard_content}{args}{split_by} = {
summary => 'Split content by specified string/regex, add the split content as multiple clipboard entries',
schema => ['str_or_re*'],
description => <<'MARKDOWN',
Cannot be used together with `--fragments` or `--command-line` option.
Note that if you supply a regex, you should not have any capture groups in the
regex.
MARKDOWN
cmdline_aliases => {s=>{}},
};
$SPEC{add_clipboard_content}{args}{fragments} = {
summary => 'Only add text fragments inside content',
schema => ['bool*'],
description => <<'MARKDOWN',
Cannot be used together with `--split-by` or `--command-line` option.
lib/App/ClipboardUtils.pm view on Meta::CPAN
Q: Another question?
A: Another half-assed answer.
Command:
% cat faq.txt | clipadd --fragments
Read <pm:Text::Fragment> for more details on text fragments.
MARKDOWN
#cmdline_aliases => {f=>{}},
};
lib/App/ClipboardUtils.pm view on Meta::CPAN
MARKDOWN
cmdline_aliases => {c=>{}},
};
$SPEC{add_clipboard_content}{args_rels}{"choose_one&"} = [
[qw/command_line split_by fragments/],
];
}
sub add_clipboard_content {
my %args = @_;
lib/App/ClipboardUtils.pm view on Meta::CPAN
); # currently we use the last add_clipboard_content status
}
}
$res->[3]{'func.parts'} = @split_parts;
$res;
} elsif ($args{fragments}) {
require Text::Fragment;
my $lfres = Text::Fragment::list_fragments(text => $content, label => "clipadd");
return [500, "Can't list fragments in content: $lfres->[0] - $lfres->[1]"]
unless $lfres->[0] == 200;
my @parts = map { $_->{payload} } sort { $a->{id} <=> $b->{id} } @{ $lfres->[2] };
my $res = [204, "OK (no content)"];
for my $part (@parts) {
lib/App/ClipboardUtils.pm view on Meta::CPAN
=item * B<content> => I<str>
(No description)
=item * B<fragments> => I<bool>
Only add text fragments inside content.
Cannot be used together with C<--split-by> or C<--command-line> option.
Example content:
lib/App/ClipboardUtils.pm view on Meta::CPAN
Q: Another question?
A: Another half-assed answer.
Command:
% cat faq.txt | clipadd --fragments
Read L<Text::Fragment> for more details on text fragments.
=item * B<split_by> => I<str_or_re>
Split content by specified stringE<sol>regex, add the split content as multiple clipboard entries.
Cannot be used together with C<--fragments> or C<--command-line> option.
Note that if you supply a regex, you should not have any capture groups in the
regex.
=item * B<tee> => I<true>
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/AutoInstall.pm view on Meta::CPAN
return 1;
}
sub postamble {
$PostambleUsed = 1;
my $fragment;
$fragment .= <<"AUTO_INSTALL" if !$InstallDepsTarget;
config :: installdeps
\t\$(NOECHO) \$(NOOP)
AUTO_INSTALL
$fragment .= <<"END_MAKE";
checkdeps ::
\t\$(PERL) $0 --checkdeps
installdeps ::
inc/Module/AutoInstall.pm view on Meta::CPAN
listalldeps ::
\t$PostambleActionsListAllDeps
END_MAKE
return $fragment;
}
1;
__END__
view all matches for this distribution
view release on metacpan or search on metacpan
devscript/update-data view on Meta::CPAN
#!/usr/bin/env perl
print "Use update-fragments-in-perl-module script from the gudangdata repo\n";
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Dazz/Command/cover.pm view on Meta::CPAN
# next if $set->size < $opt->{len};
#
# my $cmd;
# $cmd .= "DBshow -U $basename $serial";
# $cmd .= " | faops replace -l 0 stdin first.replace.tsv stdout";
# $cmd .= " | faops frag -l 0 stdin @{[$set->min]} @{[$set->max]} stdout";
# $cmd .= " >> covered.fasta";
# App::Dazz::Common::exec_cmd( $cmd, { verbose => $opt->{verbose}, } );
# }
# }
# }
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DocKnot/Spin/Text.pm view on Meta::CPAN
}
# Check for things that look like description lists and handle them.
# Note that we don't allow indented description lists, because they're
# usually something we actually want to make <pre>. This is another
# fairly fragile heuristic.
if (_is_description ($_) && defined $INDENT) {
my (@title, $body);
($title[0], $body) = split ("\n", $_, 2);
my ($space) = ($title[0] =~ /^(\s*)/);
while ($body =~ /^$space\S/) {
view all matches for this distribution
view release on metacpan or search on metacpan
t/unit/Test/DrivePlayer/DB.pm view on Meta::CPAN
my @r1 = $self->db->search_tracks('queen');
is scalar @r1, 2, 'search by artist (lowercase)';
my @r2 = $self->db->search_tracks('stairway');
is scalar @r2, 1, 'search by title fragment';
is $r2[0]{title}, 'Stairway to Heaven', 'correct track found by title';
my @r3 = $self->db->search_tracks('graffiti');
is scalar @r3, 1, 'search by album fragment';
my @r4 = $self->db->search_tracks('zzznomatch');
is scalar @r4, 0, 'no results for non-matching query';
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/ENumberUtils.pm view on Meta::CPAN
);
our %SPEC;
# BEGIN FRAGMENT id=meta-e_number varname=meta_e_number
# note: This fragment's content is generated by a script. Do not edit manually!
# src-file: /home/u1/repos/gudangdata/bin/../table/e_number/meta.yaml
# src-revision: 1014b595f7c80ead3654b93bd44335dba6d23831 (Wed Mar 1 14:15:02 2023 +0700)
# generate-date: Wed Mar 1 16:44:19 2023 UTC
# generated-by: update-fragments-in-perl-module
our $meta_e_number = {
fields => {
code => {
filterable_regex => "Yes",
pos => 0,
lib/App/ENumberUtils.pm view on Meta::CPAN
summary => "E number",
};
# END FRAGMENT id=meta-e_number
# BEGIN FRAGMENT id=data-e_number varname=data_e_number
# note: This fragment's content is generated by a script. Do not edit manually!
# src-file: /home/u1/repos/gudangdata/bin/../table/e_number/data.csv
# src-revision: 1014b595f7c80ead3654b93bd44335dba6d23831 (Wed Mar 1 14:15:02 2023 +0700)
# generate-date: Wed Mar 1 16:44:19 2023 UTC
# generated-by: update-fragments-in-perl-module
our $data_e_number = [
["code", "names", "purpose", "color", "color_index", "status"],
[
"E100",
"Curcumin (from turmeric)",
lib/App/ENumberUtils.pm view on Meta::CPAN
["E1525", "Hydroxyethyl cellulose", "thickening agent", "", "", ""],
];
# END FRAGMENT id=data-e_number
# BEGIN FRAGMENT id=meta-e_number_range varname=meta_e_number_range
# note: This fragment's content is generated by a script. Do not edit manually!
# src-file: /home/u1/repos/gudangdata/bin/../table/e_number_range/meta.yaml
# src-revision: 1014b595f7c80ead3654b93bd44335dba6d23831 (Wed Mar 1 14:15:02 2023 +0700)
# generate-date: Wed Mar 1 16:44:19 2023 UTC
# generated-by: update-fragments-in-perl-module
our $meta_e_number_range = {
fields => {
description => {
filterable_regex => "Yes",
pos => 2,
lib/App/ENumberUtils.pm view on Meta::CPAN
summary => "E number range",
};
# END FRAGMENT id=meta-e_number_range
# BEGIN FRAGMENT id=data-e_number_range varname=data_e_number_range
# note: This fragment's content is generated by a script. Do not edit manually!
# src-file: /home/u1/repos/gudangdata/bin/../table/e_number_range/data.csv
# src-revision: 1014b595f7c80ead3654b93bd44335dba6d23831 (Wed Mar 1 14:15:02 2023 +0700)
# generate-date: Wed Mar 1 16:44:19 2023 UTC
# generated-by: update-fragments-in-perl-module
our $data_e_number_range = [
["range", "subrange", "description"],
["100-199", "100-199", "Colours"],
["100-199", "100-109", "yellows"],
["100-199", "110-119", "oranges"],
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Easer/Tutorial/V2_008.pod view on Meta::CPAN
=head3 You might also want to set C<fallback_to>...
While the example in the previous section works, it's still a bit
fragile, because it makes the upper command able to run with regular
options but not with non-option command-line arguments (i.e. those that
end up populating C<residual_args>):
$ root-exec galook
cannot find sub-command 'galook'
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Egaz/Command/lpcnam.pm view on Meta::CPAN
# when a high-level net is encoundered. This is useful when nets
# have been filtered.
# -skipMissing - skip chains that are not found instead of generating
# an error. Useful if chains have been filtered.
#
# chainStitchId - Join chain fragments with the same chain ID into a single
# chain per ID. Chain fragments must be from same original chain but
# must not overlap. Chain fragment scores are summed.
# usage:
# chainStitchId in.chain out.chain
$cmd
= "netChainSubset -verbose=0 $outdir/noClass.net"
. " $outdir/all.chain"
view all matches for this distribution
view release on metacpan or search on metacpan
# This will NOT load App::Env::Site, as it has already been loaded,
# but the environment no longer contains $ENV{APP_ENV_SITE}, this
# this will load App::Env::MyApp2, not App::Env::Site1::MyApp2
App::Env::import( 'MyApp2' );
This is just too fragile. Now when App::Env is loaded, it caches
the final version of $ENV{APP_ENV_SITE}. Code which needs to change
the site in mid-program, can use the Site parameter.
0.36 2022-07-05 16:38:55-04:00 America/New_York
view all matches for this distribution
view release on metacpan or search on metacpan
share/status/app/lib/angular/angular.js view on Meta::CPAN
// Read about the NoScope elements here:
// http://msdn.microsoft.com/en-us/library/ms533897(VS.85).aspx
div.innerHTML = '<div> </div>' + element; // IE insanity to make NoScope elements work!
div.removeChild(div.firstChild); // remove the superfluous div
jqLiteAddNodes(this, div.childNodes);
var fragment = jqLite(document.createDocumentFragment());
fragment.append(this); // detach the elements from the temporary DOM div.
} else {
jqLiteAddNodes(this, element);
}
}
share/status/app/lib/angular/angular.js view on Meta::CPAN
}
if (parent) {
parent.replaceChild(newNode, firstElementToRemove);
}
var fragment = document.createDocumentFragment();
fragment.appendChild(firstElementToRemove);
newNode[jqLite.expando] = firstElementToRemove[jqLite.expando];
for (var k = 1, kk = elementsToRemove.length; k < kk; k++) {
var element = elementsToRemove[k];
jqLite(element).remove(); // must do this way to clean up expando
fragment.appendChild(element);
delete elementsToRemove[k];
}
elementsToRemove[0] = newNode;
elementsToRemove.length = 1;
share/status/app/lib/angular/angular.js view on Meta::CPAN
* @methodOf ng.$location
*
* @description
* This method is getter / setter.
*
* Return hash fragment when called without any parameter.
*
* Change hash fragment when called with parameter and return `$location`.
*
* @param {string=} hash New hash fragment
* @return {string} hash
*/
hash: locationGetterSetter('$$hash', identity),
/**
share/status/app/lib/angular/angular.js view on Meta::CPAN
do {
namedListeners = scope.$$listeners[name] || empty;
event.currentScope = scope;
for (i=0, length=namedListeners.length; i<length; i++) {
// if listeners were deregistered, defragment the array
if (!namedListeners[i]) {
namedListeners.splice(i, 1);
i--;
length--;
continue;
share/status/app/lib/angular/angular.js view on Meta::CPAN
do {
current = next;
event.currentScope = current;
listeners = current.$$listeners[name] || [];
for (i=0, length = listeners.length; i<length; i++) {
// if listeners were deregistered, defragment the array
if (!listeners[i]) {
listeners.splice(i, 1);
i--;
length--;
continue;
share/status/app/lib/angular/angular.js view on Meta::CPAN
* @ngdoc directive
* @name ng.directive:ngInclude
* @restrict ECA
*
* @description
* Fetches, compiles and includes an external HTML fragment.
*
* By default, the template URL is restricted to the same domain and protocol as the
* application document. This is done by calling {@link ng.$sce#methods_getTrustedResourceUrl
* $sce.getTrustedResourceUrl} on it. To load templates from other domains or protocols
* you may either {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist whitelist them} or
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Fetchware.pm view on Meta::CPAN
if (grep {$_->[0] eq 'KEYS'} @$filename_listing) {
msg <<EOM;
KEYS file found using lookup_url. Adding gpg_keys_url to your Fetchwarefile.
EOM
# Add 'KEYS' or '/KEYS' to $lookup_url's path.
my ($scheme, $auth, $path, $query, $fragment) =
uri_split($lookup_url);
$path = catfile($path, 'KEYS');
$lookup_url = uri_join($scheme, $auth, $path, $query, $fragment);
$options{gpg_keys_url} = $lookup_url;
$verify_configed_flag++;
} else {
msg <<EOM;
lib/App/Fetchware.pm view on Meta::CPAN
package's [$upgrade_name_basename] into just their basenames.
EOM
# Strip trailing garbage to normalize their names, so that they can be
# compared to each other.
###BUGALERT### This comparision is quite fragile. Figure out a better way to
#do this!!!
$upgrade_name_basename =~ s/\.fpkg$//;
$download_path_basename
=~ s/(\.(?:zip|tgz|tbz|txz|fpkg)|(?:\.tar\.(gz|bz2|xz|Z)?))$//;
vmsg <<EOM;
lib/App/Fetchware.pm view on Meta::CPAN
my ($temp_dir, $download_path) = @_;
my $http = HTTP::Tiny->new();
my $response;
for my $mirror (config('mirror')) {
my ($scheme, $auth, $path, $query, $fragment) = uri_split($mirror);
my $url = uri_join($scheme, $auth, $download_path, undef, undef);
msg <<EOM;
Downloading path [$download_path] using mirror [$mirror].
EOM
$response = $http->get($url);
view all matches for this distribution
view release on metacpan or search on metacpan
t/embed/test1.pl view on Meta::CPAN
Example of a hash option
[DESCRIPTION]
B<$name> reads the control file to pull together fragments of test script. Creates a single test script file and a test menu.
view all matches for this distribution
view release on metacpan or search on metacpan
Example of a hash option
[DESCRIPTION]
B<$name> reads the control file to pull together fragments of test script. Creates a single test script file and a test menu.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/FuguWeb/Check.pm view on Meta::CPAN
push @problems, "$page: $ref reads as a URL scheme;"
. ' a local link needs its ./';
next;
}
my ( $path, $fragment ) = split /#/, $ref, 2;
if ( defined $path && length $path ) {
$path = _resolve( $page, $path );
unless ( defined $path ) {
push @problems,
"$page: $ref names no page of the site";
lib/App/FuguWeb/Check.pm view on Meta::CPAN
unless ( -e $self->{out} . "/$path" ) {
push @problems, "$page: $ref leads nowhere";
next;
}
next unless defined $fragment && length $fragment;
my $target = Fugu::File->read( $self->{out} . "/$path" ) // '';
push @problems, "$page: $ref has no such anchor"
unless $target =~ /\bid="\Q$fragment\E"/;
}
return @problems;
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/sample0.txt view on Meta::CPAN
dispatched evertors munificences opuses fancified scruple autogeny telephonically fordoing airproof clingier hyperexcitabilities dizens organa lawrencium luminosity intracutaneously bowdlerizes knowns desertification levators dimerized thyroidectomiz...
chasings fellations surfboarder dilatants pingo refractometers vilenesses readjusts tracer citrins gadgeteers hyperopias falchions tensible phyllos safekeepings naiver throatiest valor faenas chiropractics walks countermobilizations demandants ficin ...
pipet powerhouses pratique uninitiated estivating remarkets pargetted irrefragable durance peroxids brazas intercropping creosols antiprogressive pedagogic splenia breadlines adjure distinctness theretofore hammertoes ouching photolyzes dirndls depil...
calved disabling gels amiabilities synergia priggisms taped peising incapacities unguarded demote ennoblements piss misstyled operosely hyperendemic treasuring birr destroying multibarreled rhapsodize horror pareira corodies wiches shadrach flayers s...
flannels negators haptens slugging kettles iteration recollecting desiderations invalidisms sleaved legitimized overissue shimmered rutile topspin medullae irrelative unsewed seriatim accomplishers headword sudorific redisplayed smuttiness cleats cyb...
interbreed inweaved gammon innovations mandatory emodin breakage subtilenesses subjugator portfolios conins tapersticks reshingle calligraphy attractivenesses extralinguistically playlist enwombing resentence bewitchment amply fanums reconvene polyth...
intertribal nonalphabetic awny habitan antielectrons interpreters twilled joky masculine unaired pith phoneyed honked etiolations dapperly curlpapers hartebeests reelable geminally miaouing pantograph commandership mysteries landgrabs scandaling spar...
armet impiously aoudad dichotomous chaffinch graviton champion untidy photoinductions antipoetic fino glutelin synthesized hallucinator tenoners beatification faintishness guildhalls fractionalizes sub grouches fleecier paleoecologic idly predicament...
share/sample0.txt view on Meta::CPAN
bubinga denaturalizes laigh heathenism comelinesses dividers ropable salaams ken marplot tortrixes enterers budgerigars directness aestivate pyrogens overlook turbidimetry winker windowed soundboards foaled hyperglycemias overbalancing batholithic ea...
synthesizer stripling abiogeneses amoebiases commanded fulcrum reluming newish percipient phlebography unrated acupressures caput menstruates clairvoyantly ionization microtome discontinuation writes perkiness bongoists conduciveness professorates ti...
interchangeably resensitize fratricidal vindicator cowry pedestaled settles boustrophedonic squashers technetium markedness upstream copier laparoscopy cerium involver frowsy excommunications gradins swingiest demythologized captivators neuropatholog...
aswarm pashalics purification rusticated rustlers passageway enhance microphages limbernesses pliotron chamisos cuddling psychogenetic multiorgasmic parfleches chemist distinguishing vera pestiferous noninformations adapting chloroformed stead tighte...
resole anticorruption freewheeled dinosaur superaddition curding hotlines vinca fracted promotive apostolic relaxer absently sandiness internists fustinesses ancones unathletic stounding semicoma saccate petasus strait geochemical coaeval bolloxing r...
blotter stater proustite keratoconjunctivitises assertor fragilities epilepsy sainting gentrifier stereotaxically unbounded trigged reichsmark overslips forebode bedight contrapuntally axmen pounding outstations taradiddles countertactics wagonette m...
moans downloads noctambulist hilt vasovagal rack palatal dogmaticalness aiders liturgiologists solion invigorate ventrally hooter eulogizer frizette methamphetamines worsened induing lankier packness tollhouse sings megadoses plasticizing fished auld...
chiasma subseres resurgences finances major margarin stomatic capelans gullying beflea broadly motorised systematically repopularizes choleras overvoted segmenting cosmopolises softheadednesses reflexively behaver reparative baize asthenospheres plus...
necrophilias procurement facially obeisance protectorates trijet graduates dreadlock descrying yamun intelligibilities kyphoses questioning impishness equablenesses restimulation druses phlebographic budless outbuying defats photolithographies tinman...
faultiest rassle orator tamer blacklisters dayworks fandom howlers archaebacteria wetback afferently contradistinctions coachmen uppercases isoniazids embryophytes delivers zaftig protohumans woozier outbloom klebsiella entomologically internationali...
inconsiderableness compares debutante waterzoois slake impuissance caesars orthopedically oxims upsprung pretrials framework beans miggles gnathite quiffs prevent frostwork resolutions heeder indie nonpossessions intimae fusilier conveyancing corrasi...
view all matches for this distribution
view release on metacpan or search on metacpan
t/integration.t view on Meta::CPAN
# These constants come directly from the FORMAL SPECIFICATION in the POD.
my @cases = (
{
ecosystem => 'npm',
steps => [{ run => 'npm install' }],
path_frag => '~/.npm',
},
{
ecosystem => 'pip',
steps => [{ run => 'pip install -r requirements.txt' }],
path_frag => '~/.cache/pip',
},
{
ecosystem => 'cargo',
steps => [{ run => 'cargo build' }],
path_frag => '~/.cargo',
},
{
ecosystem => 'bundler',
steps => [{ run => 'bundle install' }],
path_frag => 'vendor/bundle',
},
);
for my $case (@cases) {
my $wf = { jobs => { build => { steps => $case->{steps} } } };
my $suggestion = get_cache_suggestion($wf);
like($suggestion, qr/\Q$case->{path_frag}\E/,
"$case->{ecosystem}: suggestion contains path '$case->{path_frag}'");
diag("$case->{ecosystem}: $suggestion") if $ENV{TEST_VERBOSE};
}
# Unknown ecosystem (make install) must return the generic guidance message.
my $unk_wf = { jobs => { build => { steps => [{ run => 'make install' }] } } };
view all matches for this distribution
view release on metacpan or search on metacpan
data/bladder_cancer_GEO.txt view on Meta::CPAN
Platform: GPL15236 6 Samples
FTP download: GEO (CEL) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE84nnn/GSE84731/
Series Accession: GSE84731 ID: 200084731
154. Next generation sequencing analysis of potential target genes of lncRNA BLACAT2
(Submitter supplied) Next generation sequencing analysis was performed to identify potential target genes of lncRNA BLACAT2. Purified total RNA (3 μg) was used to deplete ribosomal RNA with Ribo-Zero rRNA Removal Kits (MRZMB126,Epicentre). Poly(A)+...
Organism: Homo sapiens
Type: Expression profiling by high throughput sequencing
Platform: GPL16791 3 Samples
FTP download: GEO (TXT) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE101nnn/GSE101287/
SRA Run Selector: https://www.ncbi.nlm.nih.gov/Traces/study/?acc=PRJNA393943
data/bladder_cancer_GEO.txt view on Meta::CPAN
Platform: GPL1355 9 Samples
FTP download: GEO (CEL) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE76nnn/GSE76702/
Series Accession: GSE76702 ID: 200076702
201. Cell-free DNA comprises an in vivo, genome-wide nucleosome footprint that informs its tissue(s)-of-origin
(Submitter supplied) Nucleosomes are the basic unit of packaging of eukaryotic chromatin, and nucleosome positioning can differ substantially between cell types. Here, we sequence 14.5 billion plasma-borne cell-free DNA (cfDNA) fragments (700-fold co...
Organism: Homo sapiens
Type: Genome binding/occupancy profiling by high throughput sequencing
Platform: GPL11154 60 Samples
FTP download: GEO (BB) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE71nnn/GSE71378/
SRA Run Selector: https://www.ncbi.nlm.nih.gov/Traces/study/?acc=PRJNA291063
view all matches for this distribution
view release on metacpan or search on metacpan
Graham's updates (Ivan Wills)
Added new hook setup capabilities (Ivan Wills)
Added XML::Tiny missing dependency (Ivan Wills)
Fixed counts of age (Ivan Wills)
Changed how branch age is recorded for HTML (Ivan Wills)
Changed html output to being only a fragment (Ivan Wills)
Changed sha_from_show to show all branch statuses (Ivan Wills)
Added missing scripts to compile test (Ivan Wills)
No longer importing pod2usage (Ivan Wills)
Removed imported functions (Ivan Wills)
Added calculating the next unused version number (Ivan Wills)
Graham's updates
Added new hook setup capabilities
Added XML::Tiny missing dependency
Fixed counts of age
Changed how branch age is recorded for HTML
Changed html output to being only a fragment
Changed sha_from_show to show all branch statuses
Added missing scripts to compile test
No longer importing pod2usage
Removed imported functions
Added calculating the next unused version number
view all matches for this distribution
view release on metacpan or search on metacpan
docs/src/tee.FR.pod view on Meta::CPAN
Tout d'abord, chaque fois que vous pouvez le faire avec la commande B<teip>, utilisez-la. C'est un excellent outil et beaucoup plus rapide que B<greple>.
Comme B<greple> est conçu pour traiter des fichiers de documents, il possède de nombreuses fonctionnalités qui lui sont appropriées, comme les contrôles de la zone de correspondance. Il peut être intéressant d'utiliser B<greple> pour profiter ...
Par ailleurs, B<teip> ne peut pas traiter plusieurs lignes de données comme une seule unité, alors que B<greple> peut exécuter des commandes individuelles sur un fragment de données composé de plusieurs lignes.
=head1 EXAMPLE
La commande suivante trouvera des blocs de texte dans le document de style L<perlpod(1)> inclus dans le fichier du module Perl.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Greple/wordle/NYT.pm view on Meta::CPAN
foils foins foist folds foley folia folic folie folio folks folky folly fomes
fonda fonds fondu fones fonio fonly fonts foods foody fools foots footy foram
foray forbs forby force fordo fords forel fores forex forge forgo forks forky
forma forme forms forte forth forts forty forum forza forze fossa fosse fouat
fouds fouer fouet foule fouls found fount fours fouth fovea fowls fowth foxed
foxes foxie foyer foyle foyne frabs frack fract frags frail fraim frais frame
franc frank frape fraps frass frate frati frats fraud fraus frays freak freed
freer frees freet freit fremd frena freon frere fresh frets friar fribs fried
frier fries frigs frill frise frisk frist frita frite frith frits fritt fritz
frize frizz frock froes frogs fromm frond frons front froom frore frorn frory
frosh frost froth frown frows frowy froyo froze frugs fruit frump frush frust
view all matches for this distribution
view release on metacpan or search on metacpan
README.deepl-DE.md view on Meta::CPAN
Komplexe Muster können über mehrere Zeilen hinweg geschrieben werden, wobei Zeilenumbrüche mit einem Backslash maskiert werden.
Wie der Text durch die Maskierung umgewandelt wird, können Sie mit der Option **--xlate-mask** sehen.
Platzhalter sind wohlgeformte, selbstschlieÃende XML-Tags wie z. B. `<m id="1" />`. JSON-basierte LLM-Engines erhalten die Tags in ihren Eingabe-Arrays. Bei DeepL wird eine Anfrage, die Marker-Tags enthält, mit Escape-Zeichen versehen und in eine t...
Durch Maskierung wird das Markup vor der Ãbersetzung geschützt. Um sensible Zeichenfolgen vor dem Ãbersetzungsdienst selbst zu verbergen, siehe ["ANONYMIZATION AND TEMPLATES"](#anonymization-and-templates); beide Funktionen können zusammen verwen...
Diese Schnittstelle ist experimentell und kann sich in Zukunft noch ändern.
README.deepl-DE.md view on Meta::CPAN
Setzen Sie diesen Wert auf 1, wenn Sie jeweils nur eine Zeile übersetzen wollen. Diese Option hat Vorrang vor der Option `--xlate-maxlen`.
- **--xlate-prompt**=_text_
Geben Sie eine benutzerdefinierte Eingabe an, die an die Ãbersetzungs-Engine gesendet werden soll. Diese Option ist für die LLM-Engines (`gpt3`, `gpt4o`, `gpt5`) verfügbar, nicht jedoch für DeepL. Sie können das Ãbersetzungsverhalten anpass...
- **--xlate-context**=_text_
Geben Sie zusätzliche Kontextinformationen an, die an die Ãbersetzungsmaschine gesendet werden sollen. Diese Option kann mehrfach verwendet werden, um mehrere Kontextstrings anzugeben. Die Kontextinformationen helfen der Ãbersetzungsmaschine, ...
- **--xlate-context-window**=_n_
(Context-aware engines only, e.g. `gpt5` on the llm backend)
Anzahl der umgebenden übersetzten Blöcke, die bei der Neuübersetzung geänderter Blöcke als Referenzkontext übergeben werden (Standardwert 2). Der Kontext umfasst auch den rohen Quelltext rund um den geänderten Bereich (Ãberschriften, List...
- **--xlate-cache-seed**=_file_
Initialisieren Sie den Cache eines neuen Dokuments anhand der Cache-Datei eines anderen Dokuments. Nützlich für periodische Berichte: Füllen Sie den Cache der neuen Ausgabe mit dem der vorherigen Ausgabe, damit unveränderte Absätze nicht ern...
README.deepl-DE.md view on Meta::CPAN
Werden in der derzeitigen Implementierung mehrere Teile einer Zeile übersetzt, werden sie als unabhängige Zeilen ausgegeben.
# CACHE OPTIONS
Das Modul **xlate** kann den Text der Ãbersetzung für jede Datei im Cache speichern und vor der Ausführung lesen, um den Overhead durch die Anfrage an den Server zu vermeiden. Bei der Standard-Cache-Strategie `auto` werden die Cache-Daten nur dann...
Verwenden Sie **--xlate-cache=clear**, um die Cache-Verwaltung zu starten oder um alle vorhandenen Cache-Daten zu löschen. Nach der Ausführung dieser Option wird eine neue Cache-Datei erstellt, falls noch keine vorhanden ist, und anschlieÃend auto...
- --xlate-cache=_strategy_
- `auto` (Default)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Hack/Exe.pm view on Meta::CPAN
return sleep @args;
}
sub _w00tw00t {
my $self = shift;
$self->_dots('Sending PCAP datagrams for fragmentation overlap');
say ' [+] Stack override ***** w00t w00t g0t r00t!';
say '';
print '[';
my $chars = 65;
while ($chars --> 0) {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Spiffy.pm view on Meta::CPAN
? '{}'
: default_as_code($default);
my $code = $code{sub_start};
if ($args->{-init}) {
my $fragment = $args->{-weak} ? $code{weak_init} : $code{init};
$code .= sprintf $fragment, $field, $args->{-init}, ($field) x 4;
}
$code .= sprintf $code{set_default}, $field, $default_string, $field
if defined $default;
$code .= sprintf $code{return_if_get}, $field;
$code .= sprintf $code{set}, $field;
view all matches for this distribution
view release on metacpan or search on metacpan
share/static/jquery-1.4.2.js view on Meta::CPAN
selector = [ doc.createElement( ret[1] ) ];
}
} else {
ret = buildFragment( [ match[1] ], [ doc ] );
selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes;
}
return jQuery.merge( this, selector );
// HANDLE: $("#id")
share/static/jquery-1.4.2.js view on Meta::CPAN
}
div = document.createElement("div");
div.innerHTML = "<input type='radio' name='radiotest' checked='checked'/>";
var fragment = document.createDocumentFragment();
fragment.appendChild( div.firstChild );
// WebKit doesn't clone checked state correctly in fragments
jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked;
// Figure out if the W3C box model works as expected
// document.body must exist before we can do this
jQuery(function() {
var div = document.createElement("div");
share/static/jquery-1.4.2.js view on Meta::CPAN
detach: function( selector ) {
return this.remove( selector, true );
},
domManip: function( args, table, callback ) {
var results, first, value = args[0], scripts = [], fragment, parent;
// We can't cloneNode fragments that contain checked, in WebKit
if ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === "string" && rchecked.test( value ) ) {
return this.each(function() {
jQuery(this).domManip( args, table, callback, true );
});
}
share/static/jquery-1.4.2.js view on Meta::CPAN
}
if ( this[0] ) {
parent = value && value.parentNode;
// If we're in a fragment, just use that instead of building a new one
if ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {
results = { fragment: parent };
} else {
results = buildFragment( args, this, scripts );
}
fragment = results.fragment;
if ( fragment.childNodes.length === 1 ) {
first = fragment = fragment.firstChild;
} else {
first = fragment.firstChild;
}
if ( first ) {
table = table && jQuery.nodeName( first, "tr" );
share/static/jquery-1.4.2.js view on Meta::CPAN
callback.call(
table ?
root(this[i], first) :
this[i],
i > 0 || results.cacheable || this.length > 1 ?
fragment.cloneNode(true) :
fragment
);
}
}
if ( scripts.length ) {
share/static/jquery-1.4.2.js view on Meta::CPAN
}
});
}
function buildFragment( args, nodes, scripts ) {
var fragment, cacheable, cacheresults,
doc = (nodes && nodes[0] ? nodes[0].ownerDocument || nodes[0] : document);
// Only cache "small" (1/2 KB) strings that are associated with the main document
// Cloning options loses the selected state, so don't cache them
// IE 6 doesn't like it when you put <object> or <embed> elements in a fragment
// Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache
if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 && doc === document &&
!rnocache.test( args[0] ) && (jQuery.support.checkClone || !rchecked.test( args[0] )) ) {
cacheable = true;
cacheresults = jQuery.fragments[ args[0] ];
if ( cacheresults ) {
if ( cacheresults !== 1 ) {
fragment = cacheresults;
}
}
}
if ( !fragment ) {
fragment = doc.createDocumentFragment();
jQuery.clean( args, doc, fragment, scripts );
}
if ( cacheable ) {
jQuery.fragments[ args[0] ] = cacheresults ? fragment : 1;
}
return { fragment: fragment, cacheable: cacheable };
}
jQuery.fragments = {};
jQuery.each({
appendTo: "append",
prependTo: "prepend",
insertBefore: "before",
share/static/jquery-1.4.2.js view on Meta::CPAN
}
};
});
jQuery.extend({
clean: function( elems, context, fragment, scripts ) {
context = context || document;
// !context.createElement fails in IE with an error but returns typeof 'object'
if ( typeof context.createElement === "undefined" ) {
context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
share/static/jquery-1.4.2.js view on Meta::CPAN
// Move to the right depth
while ( depth-- ) {
div = div.lastChild;
}
// Remove IE's autoinserted <tbody> from table fragments
if ( !jQuery.support.tbody ) {
// String was a <table>, *may* have spurious <tbody>
var hasBody = rtbody.test(elem),
tbody = tag === "table" && !hasBody ?
share/static/jquery-1.4.2.js view on Meta::CPAN
} else {
ret = jQuery.merge( ret, elem );
}
}
if ( fragment ) {
for ( var i = 0; ret[i]; i++ ) {
if ( scripts && jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
} else {
if ( ret[i].nodeType === 1 ) {
ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
}
fragment.appendChild( ret[i] );
}
}
}
return ret;
view all matches for this distribution
view release on metacpan or search on metacpan
t/iptables-save/github-issue-1.txt view on Meta::CPAN
*filter
:INPUT ACCEPT [0:0]
-A INPUT -i em1 -p icmp -m icmp --icmp-type 3/1 -m comment --comment "ICMP host unreachable" -j ACCEPT
-A INPUT -i em1 -p icmp -m icmp --icmp-type 3/4 -m comment --comment "ICMP frag needed but not set" -j ACCEPT
-A INPUT -i em1 -p icmp -m icmp --icmp-type 11/0 -m comment --comment "ICMP TTL exceded" -j ACCEPT
-A INPUT -i em1 -p icmp -m icmp --icmp-type 11/1 -m comment --comment "ICMP frag reassembly time exceeded" -j ACCEPT
view all matches for this distribution
view release on metacpan or search on metacpan
kritika.fatpack view on Meta::CPAN
This is the central parsing function. It can both append new text and
extract objects from the stream accumulated so far (both of these
functions are optional).
If C<$string> is given, then this string is appended to the already
existing JSON fragment stored in the C<$json> object.
After that, if the function is called in void context, it will simply
return without doing anything further. This can be used to add more text
in as many chunks as you want.
kritika.fatpack view on Meta::CPAN
=head2 incr_text
$lvalue_string = $json->incr_text
This method returns the currently stored JSON fragment as an lvalue, that
is, you can manipulate it. This I<only> works when a preceding call to
C<incr_parse> in I<scalar context> successfully returned an object. Under
all other circumstances you must not call this function (I mean it.
although in simple tests it might actually work, it I<will> fail under
real world conditions). As a special exception, you can also call this
view all matches for this distribution